annotate src/alice/test/topology/aquarium/fx/RoutingData.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 org.msgpack.annotation.Message;
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
4
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
5 @Message
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
6 public class RoutingData {
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
7
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
8 public String name;
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
9
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
10 public RoutingData(){}
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
11 public RoutingData(String name){
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
12 this.name = name;
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
13 }
6f44308ee519 aquarium with javafx
YU
parents:
diff changeset
14 }