comparison src/fdl/test/debug2/Routing.java @ 92:ea4ee892baf5

commit
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Thu, 22 Apr 2010 16:13:03 +0900
parents
children
comparison
equal deleted inserted replaced
91:4df1d50df52a 92:ea4ee892baf5
1 package fdl.test.debug2;
2
3 import java.util.LinkedList;
4
5 import fdl.*;
6
7 public class Routing {
8 PSXLinda linda;
9 int dstId;
10 LinkedList<Integer> route;
11
12 public Routing(PSXLinda linda, int dstId) {
13 this.linda = linda;
14 this.dstId = dstId;
15 this.route = new LinkedList<Integer>();
16 }
17 }