Definition at line 16 of file SUMONetwork.java.
Public Member Functions | |
| void | addJunction (String id, double x, double y) |
| Point | getJunction (String id) |
Data Fields | |
| Map< String, SUMOLane > | lanes = new HashMap<String,SUMOLane>() |
| Vector | offset = new PointImpl(0,0) |
| String | projString = null |
Private Attributes | |
| Map< String, Point > | junctions = new HashMap<String,Point>() |
| void de::psi::telco::sumoplayer::SUMONetwork::addJunction | ( | String | id, | |
| double | x, | |||
| double | y | |||
| ) | [inline] |
Definition at line 23 of file SUMONetwork.java.
References junctions.
00023 { 00024 junctions.put(id, new PointImpl(x,y)); 00025 }
| Point de::psi::telco::sumoplayer::SUMONetwork::getJunction | ( | String | id | ) | [inline] |
Definition at line 27 of file SUMONetwork.java.
References junctions.
00027 { 00028 return this.junctions.get(id); 00029 }
Map<String,Point> de::psi::telco::sumoplayer::SUMONetwork::junctions = new HashMap<String,Point>() [private] |
| Map<String, SUMOLane> de::psi::telco::sumoplayer::SUMONetwork::lanes = new HashMap<String,SUMOLane>() |
Definition at line 20 of file SUMONetwork.java.
Referenced by de::psi::telco::sumoplayer::SUMOSAXNeworkfileHandler::characters(), and de::psi::telco::sumoplayer::SUMOGeoCoordinatesResolver::SUMOGeoCoordinatesResolver().
| String de::psi::telco::sumoplayer::SUMONetwork::projString = null |
Definition at line 19 of file SUMONetwork.java.
Referenced by de::psi::telco::sumoplayer::SUMOSAXNeworkfileHandler::characters(), and de::psi::telco::sumoplayer::SUMOGeoCoordinatesResolver::SUMOGeoCoordinatesResolver().
1.5.6