Mercurial > hg > Database > Alice
annotate src/test/java/alice/daemon/MulticastStartCodeSegment.java @ 419:aefbe41fcf12 dispose
change tab to space
author | sugi |
---|---|
date | Tue, 15 Jul 2014 16:00:22 +0900 |
parents | 0c24894db37e |
children | b7d02ea79850 |
rev | line source |
---|---|
368 | 1 package alice.daemon; |
2 | |
3 import alice.codesegment.CodeSegment; | |
4 | |
5 public class MulticastStartCodeSegment extends CodeSegment { | |
6 | |
419 | 7 @Override |
8 public void run() { | |
9 MulticastIncrement cs = new MulticastIncrement(); | |
10 cs.num.setKey("multicast","num"); | |
11 | |
12 ods.put("multicast", "num", 0); | |
13 } | |
368 | 14 |
15 } |