00001 package ns2; 00002 00008 public class Lane { 00009 public String id; 00010 public float xfrom; 00011 public float xto; 00012 public float yfrom; 00013 public float yto; 00014 public float length; 00015 00025 public Lane(String id, float xfrom, float xto, float yfrom, float yto, float length) { 00026 this.id = id; 00027 this.xfrom = xfrom; 00028 this.xto = xto; 00029 this.yfrom = yfrom; 00030 this.yto = yto; 00031 this.length = length; 00032 } 00033 }
1.5.6