annotate src/alice/test/topology/aquarium/fx/RoutingData.java @ 40:8119d2bc3735 default tip

refactor
author YU
date Mon, 09 Jun 2014 19:17:00 +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 }