annotate src/alice/test/topology/aquarium/fx/StartCodeSegment.java @ 17:9bacc8b30c4b

minor change
author e095732
date Sun, 03 Feb 2013 18:34:16 +0900
parents 6f44308ee519
children
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 StartCodeSegment 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 new CheckMyName();
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
10 }
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
11
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
12 }