comparison src/main/java/jp/ac/u_ryukyu/treevnc/RequestScreenThread.java @ 207:b31903e5b02d

rename myRFBProto
author oc
date Wed, 02 Jul 2014 18:14:20 +0900
parents 2b3eb4a9492f
children 42fcc9419498
comparison
equal deleted inserted replaced
206:2b3eb4a9492f 207:b31903e5b02d
1 package jp.ac.u_ryukyu.treevnc; 1 package jp.ac.u_ryukyu.treevnc;
2 2
3 import com.glavsoft.rfb.protocol.Protocol; 3 import com.glavsoft.rfb.protocol.Protocol;
4 4
5 public class RequestScreenThread implements Runnable { 5 public class RequestScreenThread implements Runnable {
6 public MyRfbProto rfb; 6 public TreeRFBProto rfb;
7 Protocol protocol; 7 Protocol protocol;
8 8
9 public RequestScreenThread(MyRfbProto _rfb) { 9 public RequestScreenThread(TreeRFBProto _rfb) {
10 rfb = _rfb; 10 rfb = _rfb;
11 } 11 }
12 12
13 13
14 14