Package org.planit.io.zoning
Class PlanitZoningReaderSettings
- java.lang.Object
-
- org.planit.io.zoning.PlanitZoningReaderSettings
-
public class PlanitZoningReaderSettings extends Object
Settings for the PLANit zoning reader- Author:
- markr
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,Connectoid>
xmlIdConnectoidMap
Map to stores connectoids by xml Idprotected Map<String,Zone>
xmlIdZoneMap
Map to stores zones by xml Id
-
Constructor Summary
Constructors Constructor Description PlanitZoningReaderSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Map<String,Connectoid>
getMapToIndexConnectoidsByXmlIds()
map to index connectoids by xml id when parsingprotected Map<String,Zone>
getMapToIndexZoneByXmlIds()
map to index nodes by xml id when parsingvoid
setMapToIndexConnectoidsByXmlIds(Map<String,Connectoid> xmlIdConnectoidMap)
Use provided map to index connectoids by xml id when parsingvoid
setMapToIndexZoneByXmlIds(Map<String,Zone> xmlIdZoneMap)
Use provided map to index zones by xml id when parsing
-
-
-
Method Detail
-
getMapToIndexZoneByXmlIds
protected Map<String,Zone> getMapToIndexZoneByXmlIds()
map to index nodes by xml id when parsing- Returns:
- zoneXmlIdToNodeMap to use
-
setMapToIndexZoneByXmlIds
public void setMapToIndexZoneByXmlIds(Map<String,Zone> xmlIdZoneMap)
Use provided map to index zones by xml id when parsing- Parameters:
xmlIdZoneMap
- to use
-
getMapToIndexConnectoidsByXmlIds
protected Map<String,Connectoid> getMapToIndexConnectoidsByXmlIds()
map to index connectoids by xml id when parsing- Returns:
- zoneXmlIdToNodeMap to use
-
setMapToIndexConnectoidsByXmlIds
public void setMapToIndexConnectoidsByXmlIds(Map<String,Connectoid> xmlIdConnectoidMap)
Use provided map to index connectoids by xml id when parsing- Parameters:
xmlIdConnectoidMap
- to use
-
-