view src/treeVnc/TreeVnc.java @ 3:8a65a3791030

add .project file
author Yu Taninari <you@cr.ie.u-ryukyu.ac.jp>
date Mon, 12 Dec 2011 12:42:03 +0900
parents 8f9bf4708785
children 2858fe757f0e
line wrap: on
line source

package src.treeVnc;

import myVncClient.MyVncClient;
import myVncProxy.VncProxyService;

;

public class TreeVnc {
	public static void main(String[] argv) {
			SelectType select = new SelectType();
			select.selectType();

			while (select.wait) {
				try {
					Thread.sleep(1000);
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
			System.out.println("test");

			if (select.type) {
				MyVncClient client = new MyVncClient();
				client.treeVncClient(argv);
			} else {
				VncProxyService proxy = new VncProxyService();
				proxy.treeVncProxy(argv);
			}
	}
}