view src/alice/test/topology/aquarium/fx/RoutingTable.java @ 16:5e6d40908c60

delete bug
author e095732
date Sun, 03 Feb 2013 17:49:26 +0900
parents 6f44308ee519
children
line wrap: on
line source

package alice.test.topology.aquarium.fx;

import java.util.ArrayList;
import java.util.List;

import org.msgpack.annotation.Message;

@Message
public class RoutingTable {
	public List<RoutingData> table = new ArrayList<RoutingData>();
	
	public RoutingTable(){}
	
	public RoutingTable(String str){
		table.add(new RoutingData(str));
	}
	
}