comparison src/main/java/jp/ac/u_ryukyu/treevnc/client/WaitReply.java @ 28:18fad65bc447

Create MyRfbProto.java MyRfbProto.java is a summary of the intersection of MyRfbClient and MyRfbProxy.
author one
date Sat, 01 Sep 2012 19:24:07 +0900
parents 12c3a73be47f
children 1b81deb0abb3
comparison
equal deleted inserted replaced
27:85958cba5d15 28:18fad65bc447
7 import jp.ac.u_ryukyu.treevnc.*; 7 import jp.ac.u_ryukyu.treevnc.*;
8 8
9 9
10 public class WaitReply extends Thread { 10 public class WaitReply extends Thread {
11 InterfaceForViewer client; 11 InterfaceForViewer client;
12 private String treenum;
13 boolean passflag; 12 boolean passflag;
14 13
15 14
16 15
17 public WaitReply(String treenum, InterfaceForViewer client) { 16 public WaitReply(String treenum, InterfaceForViewer client) {
18 this.client = client; 17 this.client = client;
19 this.treenum = treenum;
20 } 18 }
21 19
22 public boolean checkPath() { 20 public boolean checkPath() {
23 return passflag; 21 return passflag;
24 } 22 }