annotate src/main/java/alice/test/topology/ring/StartRing.java @ 655:1c93e82e05c6 default tip

fix timestamp
author suruga
date Sat, 17 Feb 2018 00:33:00 +0900
parents aefbe41fcf12
children 15eeb439830c
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);
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
13 cs.ds1.setKey("host");
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 }