annotate src/main/java/alice/test/topology/aquarium/FishMovementTopology.java @ 419:aefbe41fcf12 dispose

change tab to space
author sugi
date Tue, 15 Jul 2014 16:00:22 +0900
parents 0aff26fb2375
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.aquarium;
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
2 import alice.topology.node.TopologyNode;
372
0aff26fb2375 no need FishMovementConfig
sugi
parents: 345
diff changeset
3 import alice.topology.node.TopologyNodeConfig;
345
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
4
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
5 public class FishMovementTopology {
419
aefbe41fcf12 change tab to space
sugi
parents: 372
diff changeset
6 public static void main(String[] args){
aefbe41fcf12 change tab to space
sugi
parents: 372
diff changeset
7 TopologyNodeConfig conf = new TopologyNodeConfig(args);
aefbe41fcf12 change tab to space
sugi
parents: 372
diff changeset
8 new TopologyNode(conf, new StartFishMovement());
aefbe41fcf12 change tab to space
sugi
parents: 372
diff changeset
9
aefbe41fcf12 change tab to space
sugi
parents: 372
diff changeset
10 }
345
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
11
8f71c3e6f11d Change directory structure Maven standard
sugi
parents:
diff changeset
12 }