annotate src/myVncClient/InterfaceForViewer.java @ 60:18a19d8a09f4

add some files. for to use Client with CUI.
author e085711
date Fri, 05 Aug 2011 01:05:38 +0900
parents
children 1f05b73b15df
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
60
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
1 package myVncClient;
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
2
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
3 import java.awt.Graphics;
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
4 import java.net.Socket;
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
5
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
6 public interface InterfaceForViewer {
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
7
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
8 public void init(EchoClient value);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
9 public void start_threads();
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
10 public void start();
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
11
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
12
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
13 public String readParameter(String name, boolean required);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
14
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
15 // synchronized
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
16 public void disconnect();
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
17 public void fatalError(String str);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
18 public void fatalError(String str, Exception e);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
19
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
20
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
21 public void destroy();
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
22
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
23 public void enableInput(boolean enable);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
24
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
25
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
26 public void setClientSocket(Socket sock);
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
27
18a19d8a09f4 add some files. for to use Client with CUI.
e085711
parents:
diff changeset
28 }