annotate src/alice/test/topology/aquarium/fx/RoutingData.java @ 23:b77c2c6db854

minor change
author e095732
date Mon, 01 Jul 2013 20:02:03 +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 }