Junction.java
Go to the documentation of this file.00001 package ns2;
00002
00008 public class Junction {
00009 public String id;
00010 public float x;
00011 public float y;
00012
00019 public Junction(String id, float x, float y)
00020 {
00021 this.id = id;
00022 this.x = x;
00023 this.y = y;
00024 }
00025 }