00001 package ansim; 00002 00007 public class Edge { 00008 00020 public Edge(String id, float length, float speed, String name, float xfrom, float yfrom, float xto, float yto) { 00021 this.id = id; 00022 this.length = length; 00023 this.speed = speed; 00024 this.name = name; 00025 this.xfrom = xfrom; 00026 this.yfrom = yfrom; 00027 this.xto = xto; 00028 this.yto = yto; 00029 } 00030 00031 public String id; 00032 public float length; 00033 public float speed; 00034 public String name; 00035 public float xfrom; 00036 public float yfrom; 00037 public float xto; 00038 public float yto; 00039 }
1.5.6