comparison src/main/java/jp/ac/u_ryukyu/treevnc/client/WaitReply.java @ 35:1b81deb0abb3

write a little part reconnection.
author one
date Wed, 12 Sep 2012 13:16:47 +0900
parents 18fad65bc447
children b7d4d0349f99
comparison
equal deleted inserted replaced
34:f70008073a03 35:1b81deb0abb3
2 2
3 import java.io.IOException; 3 import java.io.IOException;
4 import java.net.ServerSocket; 4 import java.net.ServerSocket;
5 import java.net.Socket; 5 import java.net.Socket;
6 6
7 import jp.ac.u_ryukyu.treevnc.*;
8
9 7
10 public class WaitReply extends Thread { 8 public class WaitReply extends Thread {
11 InterfaceForViewer client; 9 MyVncClient client;
12 boolean passflag; 10 boolean passflag;
13 11
14 12
15 13
16 public WaitReply(String treenum, InterfaceForViewer client) { 14 public WaitReply(String treenum, MyVncClient client) {
17 this.client = client; 15 this.client = client;
18 } 16 }
19 17
20 public boolean checkPath() { 18 public boolean checkPath() {
21 return passflag; 19 return passflag;