Mercurial > hg > Database > Alice
view src/alice/test/topology/ring/StartRing.java @ 46:1a498f436332
bug fix for time calculate
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 04 Feb 2012 16:03:05 +0900 (2012-02-04) |
parents | b5a21baf0b07 |
children | ca42a2c8ac22 |
line wrap: on
line source
package alice.test.topology.ring; import alice.codesegment.CodeSegment; public class StartRing extends CodeSegment { private RingTopologyConfig conf; public StartRing(RingTopologyConfig conf) { this.conf = conf; } @Override public void run() { CheckMyName cs = new CheckMyName(conf); cs.host.setKey("local", "host"); } }