# HG changeset patch # User sugi # Date 1373959051 -32400 # Node ID 7e1f6b575b5a44a386356674a2f3a552029c2d76 # Parent 68f6e0fa4a89bf93c64efdb308a537d069ba0268 remove no used files diff -r 68f6e0fa4a89 -r 7e1f6b575b5a src/alice/test/topology/aquarium/AddRoutingTable.java --- a/src/alice/test/topology/aquarium/AddRoutingTable.java Tue Jul 16 16:17:14 2013 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -package alice.test.topology.aquarium; - -import alice.codesegment.CodeSegment; -import alice.datasegment.CommandType; -import alice.datasegment.Receiver; - -public class AddRoutingTable extends CodeSegment { - - public Receiver mail = ids.create(CommandType.PEEK); - private RoutingTable routing; - - public AddRoutingTable(RoutingTable routing,int index){ - this.routing = routing; - this.mail.setKey("member", index); - - } - - @Override - public void run() { - //System.out.println("add "+this.mail.from); - routing.table.add(new Routing(this.mail.from)); - - ods.update("list", this.routing); - new AddRoutingTable(this.routing, this.mail.index); - - } - -} diff -r 68f6e0fa4a89 -r 7e1f6b575b5a src/alice/test/topology/aquarium/Routing.java --- a/src/alice/test/topology/aquarium/Routing.java Tue Jul 16 16:17:14 2013 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -package alice.test.topology.aquarium; - -import org.msgpack.annotation.Message; - -@Message -public class Routing { - - public String name; - public Routing(){} - - public Routing(String name){ - this.name = name; - } -} diff -r 68f6e0fa4a89 -r 7e1f6b575b5a src/alice/test/topology/aquarium/RoutingTable.java --- a/src/alice/test/topology/aquarium/RoutingTable.java Tue Jul 16 16:17:14 2013 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,12 +0,0 @@ -package alice.test.topology.aquarium; - -import java.util.ArrayList; -import java.util.List; - -import org.msgpack.annotation.Message; - -@Message -public class RoutingTable { - public List table = new ArrayList(); - -}