ns2/Edge.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package ns2;
00011
00012 import java.util.HashMap;
00013 import java.util.Map;
00014
00019 public class Edge {
00020 public String id;
00021 public String from;
00022 public String to;
00023 public Map<String, Lane> lanes;
00024
00031 public Edge(String id, String from, String to)
00032 {
00033 this.id = id;
00034 this.from = from;
00035 this.to = to;
00036 this.lanes = new HashMap<String, Lane>();
00037 }
00038 }