annotate src/myVncClient/InterfaceForViewer.java @ 69:1f05b73b15df

modify MyVncClient.java and CuiMyVNcClient.java
author e085711
date Sun, 07 Aug 2011 04:22:07 +0900
parents 18a19d8a09f4
children f6cb1edc2036
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
69
1f05b73b15df modify MyVncClient.java and CuiMyVNcClient.java
e085711
parents: 60
diff changeset
6 public interface InterfaceForViewer extends java.lang.Runnable{
60
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 }