comparison paper/src/InhelitClients.java @ 30:f690dec3cbd5

Add images
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Wed, 17 Feb 2016 22:06:56 +0900
parents
children
comparison
equal deleted inserted replaced
29:81e6e6f33521 30:f690dec3cbd5
1 @Override
2 public void inhelitClients(String hostName, short newVNCServerId, int x, int y, int width, int height, int scale) {
3 final ConnectionPresenter connectionPresenter = createNewConnectionPresenter(hostName, newVNCServerId, x, y, width, height, scale);
4 isApplet = true;
5 this.setNoConnection(false);
6 final Viewer v = this;
7
8 new Thread(new Runnable() {
9 @Override
10 public void run() {
11 connectionPresenter.startVNCConnection(v, false, null, null);
12 }
13 }, "ServerChangeThread").start();
14 }