Mercurial > hg > Papers > 2016 > parusu-thesis
changeset 30:f690dec3cbd5
Add images
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 17 Feb 2016 22:06:56 +0900 |
parents | 81e6e6f33521 |
children | d8660bf1da6f |
files | paper/images/multiDisplay.graffle paper/images/multiDisplay.pdf paper/images/serverChangeThread.graffle paper/images/serverChangeThread.pdf paper/src/InhelitClients.java |
diffstat | 5 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/src/InhelitClients.java Wed Feb 17 22:06:56 2016 +0900 @@ -0,0 +1,14 @@ +@Override +public void inhelitClients(String hostName, short newVNCServerId, int x, int y, int width, int height, int scale) { + final ConnectionPresenter connectionPresenter = createNewConnectionPresenter(hostName, newVNCServerId, x, y, width, height, scale); + isApplet = true; + this.setNoConnection(false); + final Viewer v = this; + + new Thread(new Runnable() { + @Override + public void run() { + connectionPresenter.startVNCConnection(v, false, null, null); + } + }, "ServerChangeThread").start(); +}