Mercurial > hg > Database > Alice
comparison src/main/java/alice/test/topology/fish/RoutingTable.java @ 345:8f71c3e6f11d
Change directory structure Maven standard
author | sugi |
---|---|
date | Wed, 16 Apr 2014 18:26:07 +0900 |
parents | |
children | aefbe41fcf12 |
comparison
equal
deleted
inserted
replaced
344:9f97ec18f8c5 | 345:8f71c3e6f11d |
---|---|
1 package alice.test.topology.fish; | |
2 | |
3 import java.util.ArrayList; | |
4 import java.util.List; | |
5 | |
6 import org.msgpack.annotation.Message; | |
7 | |
8 @Message | |
9 public class RoutingTable { | |
10 | |
11 int sumWidth = 0; | |
12 List<Routing> table = new ArrayList<Routing>(); | |
13 | |
14 } |