Uses of Class
org.openstreetmap.josm.tools.MultiMap

Packages that use MultiMap
org.openstreetmap.josm.actions   
org.openstreetmap.josm.data.validation.tests   
org.openstreetmap.josm.gui.tagging.ac   
org.openstreetmap.josm.io.session   
org.openstreetmap.josm.tools   
 

Uses of MultiMap in org.openstreetmap.josm.actions
 

Fields in org.openstreetmap.josm.actions declared as MultiMap
private  MultiMap<Layer,Layer> SessionSaveAsAction.dependencies
           
 

Uses of MultiMap in org.openstreetmap.josm.data.validation.tests
 

Fields in org.openstreetmap.josm.data.validation.tests declared as MultiMap
(package private)  MultiMap<Way,Way> SimilarNamedWays.errorWays
          The already detected errors
(package private)  MultiMap<Pair<Node,Node>,WaySegment> OverlappingWays.nodePairs
          Bag of all way segments
protected static MultiMap<java.lang.String,java.lang.String> TagChecker.presetsValueData
          The spell check preset values
(package private)  MultiMap<DuplicateRelation.RelationPair,OsmPrimitive> DuplicateRelation.relations
          MultiMap of all relations
(package private)  MultiMap<java.util.List<RelationMember>,OsmPrimitive> DuplicateRelation.relations_nokeys
          MultiMap of all relations, regardless of keys
(package private)  MultiMap<DuplicateWay.WayPair,OsmPrimitive> DuplicateWay.ways
          Bag of all ways
(package private)  MultiMap<DuplicateWay.WayPairNoTags,OsmPrimitive> DuplicateWay.waysNoTags
          Bag of all ways, regardless of tags
 

Uses of MultiMap in org.openstreetmap.josm.gui.tagging.ac
 

Fields in org.openstreetmap.josm.gui.tagging.ac declared as MultiMap
protected static MultiMap<java.lang.String,java.lang.String> AutoCompletionManager.presetTagCache
          the same as tagCache but for the preset keys and values can be accessed directly
protected  MultiMap<java.lang.String,java.lang.String> AutoCompletionManager.tagCache
          the cached tags given by a tag key and a list of values for this tag only accessed by getTagCache(), rebuild() and cachePrimitiveTags() use getTagCache() accessor
 

Methods in org.openstreetmap.josm.gui.tagging.ac that return MultiMap
protected  MultiMap<java.lang.String,java.lang.String> AutoCompletionManager.getTagCache()
           
 

Uses of MultiMap in org.openstreetmap.josm.io.session
 

Fields in org.openstreetmap.josm.io.session declared as MultiMap
private  MultiMap<Layer,Layer> SessionWriter.dependencies
           
 

Constructors in org.openstreetmap.josm.io.session with parameters of type MultiMap
SessionWriter(java.util.List<Layer> layers, java.util.Map<Layer,SessionLayerExporter> exporters, MultiMap<Layer,Layer> dependencies, boolean zip)
           
 

Uses of MultiMap in org.openstreetmap.josm.tools
 

Methods in org.openstreetmap.josm.tools with parameters of type MultiMap
static
<T> java.util.List<T>
Utils.topologicalSort(MultiMap<T,T> dependencies)
          Topological sort.
 



JOSM