ns2/Edge.java

Go to the documentation of this file.
00001 /*
00002  * Edge.java
00003  *
00004  * Created on 14. Februar 2006, 10:13
00005  *
00006  * To change this template, choose Tools | Template Manager
00007  * and open the template in the editor.
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 }

Generated on Wed May 5 00:06:28 2010 for Sumo - Simulation of Urban MObility by  doxygen 1.5.6