Mercurial > hg > Applications > AliceVNC
view src/main/java/jp/ac/u_ryukyu/alicevnc/AliceVNC.java @ 75:e6bbe25072b1
update Alice
author | Nozomi |
---|---|
date | Thu, 26 Nov 2015 22:02:36 +0900 |
parents | 57ca704f86a3 |
children | 6b0730c48b4e 4a8755a30aa8 |
line wrap: on
line source
package jp.ac.u_ryukyu.alicevnc; import alice.codesegment.CodeSegment; import alice.daemon.AliceDaemon; public class AliceVNC extends CodeSegment { private AliceVNCConfig conf; public AliceVNC(AliceVNCConfig conf) { this.conf = conf; } public void run() { System.out.println(); ods.put("AliceVNCConfig", conf); new ReceiveMeasurement(); new CheckMyName(); } }