Uses of Interface
org.openstreetmap.josm.data.osm.Tagged

Packages that use Tagged
org.openstreetmap.josm.data.osm   
org.openstreetmap.josm.gui.tagging   
org.openstreetmap.josm.io   
 

Uses of Tagged in org.openstreetmap.josm.data.osm
 

Subinterfaces of Tagged in org.openstreetmap.josm.data.osm
 interface INode
           
 interface IPrimitive
          IPrimitive captures the common functions of OsmPrimitive and PrimitiveData.
 interface IRelation
           
 interface IWay
           
 

Classes in org.openstreetmap.josm.data.osm that implement Tagged
 class AbstractPrimitive
          Abstract class to represent common features of the datatypes primitives.
 class Changeset
          Represents a single changeset in JOSM.
 class Node
          One node data, consisting of one world coordinate waypoint.
 class NodeData
           
 class OsmPrimitive
          An OSM primitive can be associated with a key/value pair.
 class PrimitiveData
          This class can be used to save properties of OsmPrimitive.
 class Relation
          An relation, having a set of tags and any number (0...n) of members.
 class RelationData
           
 class Way
          One full way, consisting of a list of way nodes.
 class WayData
           
 

Methods in org.openstreetmap.josm.data.osm with parameters of type Tagged
 void TagCollection.applyTo(Tagged primitive)
          Applies this tag collection to an OsmPrimitive.
static TagCollection TagCollection.from(Tagged primitive)
          Creates a tag collection from the tags managed by a specific OsmPrimitive.
 void TagCollection.replaceTagsOf(Tagged primitive)
          Replaces the tags of an OsmPrimitive by the tags in this collection .
 

Method parameters in org.openstreetmap.josm.data.osm with type arguments of type Tagged
 void TagCollection.applyTo(java.util.Collection<? extends Tagged> primitives)
          Applies this tag collection to a collection of OsmPrimitives.
static TagCollection TagCollection.commonToAllPrimitives(java.util.Collection<? extends Tagged> primitives)
          Replies a tag collection with the tags which are common to all primitives in in primitives.
 void TagCollection.replaceTagsOf(java.util.Collection<? extends Tagged> primitives)
          Replaces the tags of a collection ofOsmPrimitives by the tags in this collection.
static TagCollection TagCollection.unionOfAllPrimitives(java.util.Collection<? extends Tagged> primitives)
          Creates a tag collection from the union of the tags managed by a collection of primitives.
 

Uses of Tagged in org.openstreetmap.josm.gui.tagging
 

Methods in org.openstreetmap.josm.gui.tagging with parameters of type Tagged
 void TagEditorModel.applyToPrimitive(Tagged primitive)
          applies the current state of the tag editor model to a primitive
 void TagEditorModel.initFromPrimitive(Tagged primitive)
          initializes the model with the tags of an OSM primitive
 

Uses of Tagged in org.openstreetmap.josm.io
 

Methods in org.openstreetmap.josm.io with parameters of type Tagged
protected  void OsmWriter.addTags(Tagged osm, java.lang.String tagname, boolean tagOpen)
           
private  void OsmReader.parseTag(Tagged t)
           
 



JOSM