comparison src/viewer_swing/java/com/glavsoft/viewer/ViewerInterface.java @ 175:e1aa06b0d2ff

on going ...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 22 Jun 2014 11:35:01 +0900
parents 2e1530139169
children fa6cfb85444e
comparison
equal deleted inserted replaced
174:2e1530139169 175:e1aa06b0d2ff
2 2
3 import java.io.IOException; 3 import java.io.IOException;
4 import java.net.Socket; 4 import java.net.Socket;
5 5
6 import jp.ac.u_ryukyu.treevnc.MyRfbProto; 6 import jp.ac.u_ryukyu.treevnc.MyRfbProto;
7 import jp.ac.u_ryukyu.treevnc.server.TreeManagement;
8 7
9 public interface ViewerInterface extends Runnable { 8 public interface ViewerInterface extends Runnable {
10 9
11 public boolean getCuiVersion(); 10 public boolean getCuiVersion();
12 11
38 37
39 public void initRoot(String hostName, MyRfbProto myRfb); 38 public void initRoot(String hostName, MyRfbProto myRfb);
40 39
41 public void inhelitClients(ViewerInterface vncProxyService, String hostName); 40 public void inhelitClients(ViewerInterface vncProxyService, String hostName);
42 41
43 public void setTreeManager(TreeManagement treeManager);
44
45 public void initRootViewer(String hostName); 42 public void initRootViewer(String hostName);
46 43
44 public void proxyStart(String[] args, int width, int height);
45
47 } 46 }