Mercurial > hg > Applications > AliceVNC
view src/main/java/jp/ac/u_ryukyu/alicevnc/StartAliceVNC.java @ 39:dcc90f91f804
update repository version
author | sugi |
---|---|
date | Mon, 08 Dec 2014 16:43:39 +0900 |
parents | 08a14d094d02 |
children | 47d6f7a76b86 |
line wrap: on
line source
package jp.ac.u_ryukyu.alicevnc; import java.util.ArrayList; import alice.topology.node.TopologyNode; public class StartAliceVNC { public static void main(String args[]){ AliceVNCConfig conf = new AliceVNCConfig(args); AliceVNC cs = new AliceVNC(conf); if (conf.debugMode()) { cs.ods.put("_CLIST", new ArrayList<String>()); cs.ods.put("host", "node0"); cs.execute(); return; } if (conf.getManagerHostName() ==null){ conf.setManagerHostName("firefly.cr.ie.u-ryukyu.ac.jp"); } new TopologyNode(conf, cs); } }