annotate src/main/java/alice/test/topology/ring/RingTopology.java @ 543:f3f7e256ee03 dispose

add AliceDaemon on paramater
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Mon, 03 Aug 2015 20:00:53 +0900
parents aefbe41fcf12
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.topology.node.TopologyNode;
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
4
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
5 public class RingTopology {
419
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
6
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
7 public static void main(String[] args) {
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
8 RingTopologyConfig conf = new RingTopologyConfig(args);
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
9 new TopologyNode(conf, new StartRing(conf));
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
10 }
aefbe41fcf12 change tab to space
sugi
parents: 345
diff changeset
11
345
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
12 }