annotate src/main/java/alice/test/topology/ring/StartRing.java @ 547:e91a574b69de dispose

remove index
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Tue, 18 Aug 2015 16:15:17 +0900
parents 15eeb439830c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
345
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
1 package alice.test.topology.ring;
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
2
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
3 import alice.codesegment.CodeSegment;
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
4
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
5 public class StartRing extends CodeSegment {
419
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
6 private RingTopologyConfig conf;
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
7 public StartRing(RingTopologyConfig conf) {
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
8 this.conf = conf;
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
9 }
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
10 @Override
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
11 public void run() {
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
12 CheckMyName cs = new CheckMyName(conf);
547
e91a574b69de remove index
Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
parents: 546
diff changeset
13 cs.ds1.setKey("host", this);
419
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
14 }
345
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
15
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
16 }