annotate src/alice/test/topology/aquarium/fx/TopNode.java @ 0:6f44308ee519

aquarium with javafx
author YU
date Thu, 24 Jan 2013 02:16:17 +0900
parents
children bf24d5200770
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
1 package alice.test.topology.aquarium.fx;
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
2
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
3 import alice.codesegment.CodeSegment;
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
4
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
5 public class TopNode extends CodeSegment{
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
6
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
7 @Override
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
8 public void run() {
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
9 ods.put("local", "list", new RoutingTable());
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
10 new RegistRoutingTable();
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
11
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
12 }
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
13
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
14 }