Uses of Class
org.openstreetmap.josm.data.osm.Tag

Packages that use Tag
org.openstreetmap.josm.actions   
org.openstreetmap.josm.data.osm   
org.openstreetmap.josm.data.validation.tests   
org.openstreetmap.josm.gui.conflict.tags   
org.openstreetmap.josm.gui.dialogs.properties   
org.openstreetmap.josm.gui.dialogs.relation   
org.openstreetmap.josm.gui.mappaint   
org.openstreetmap.josm.gui.tagging   
 

Uses of Tag in org.openstreetmap.josm.actions
 

Fields in org.openstreetmap.josm.actions with type parameters of type Tag
private  java.util.List<Tag> PasteTagsAction.TagPaster.commands
           
 

Methods in org.openstreetmap.josm.actions that return types with arguments of type Tag
 java.util.List<Tag> PasteTagsAction.TagPaster.execute()
           
 

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

Fields in org.openstreetmap.josm.data.osm with type parameters of type Tag
private  java.util.HashSet<Tag> TagCollection.tags
           
 

Methods in org.openstreetmap.josm.data.osm that return types with arguments of type Tag
 java.util.List<Tag> TagCollection.asList()
          Replies the tags of this tag collection as list.
 java.util.Set<Tag> TagCollection.asSet()
          Replies the tags of this tag collection as set
 java.util.Iterator<Tag> TagCollection.iterator()
          Replies an iterator to iterate over the tags in this collection
 

Methods in org.openstreetmap.josm.data.osm with parameters of type Tag
 void TagCollection.add(Tag tag)
          Adds a tag to the tag collection.
 boolean TagCollection.contains(Tag tag)
          Replies true if the this tag collection contains tag.
 void TagCollection.remove(Tag tag)
          Removes a specific tag from the tag collection.
 void TagCollection.setUniqueForKey(Tag tag)
          Sets a unique tag for the key of this tag.
 

Method parameters in org.openstreetmap.josm.data.osm with type arguments of type Tag
 void TagCollection.add(java.util.Collection<Tag> tags)
          Adds a collection of tags to the tag collection.
 boolean TagCollection.containsAll(java.util.Collection<Tag> tags)
          Replies true if this tag collection contains all tags in tags.
 void TagCollection.remove(java.util.Collection<Tag> tags)
          Removes a collection of tags from the tag collection.
 

Constructors in org.openstreetmap.josm.data.osm with parameters of type Tag
Tag(Tag tag)
          Creates clone of the tag tag.
 

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

Fields in org.openstreetmap.josm.data.validation.tests with type parameters of type Tag
(package private)  java.util.List<Tag> DeprecatedTags.DeprecationCheck.alternatives
           
(package private)  java.util.List<Tag> DeprecatedTags.DeprecationCheck.change
           
(package private)  java.util.List<Tag> DeprecatedTags.DeprecationCheck.test
           
 

Uses of Tag in org.openstreetmap.josm.gui.conflict.tags
 

Methods in org.openstreetmap.josm.gui.conflict.tags that return Tag
 Tag MultiValueResolutionDecision.getResolution()
          Replies a tag representing the current resolution.
 

Uses of Tag in org.openstreetmap.josm.gui.dialogs.properties
 

Fields in org.openstreetmap.josm.gui.dialogs.properties with type parameters of type Tag
private static java.util.Map<Tag,java.lang.Void> PropertiesDialog.recentTags
           
 

Methods in org.openstreetmap.josm.gui.dialogs.properties that return Tag
 Tag PropertiesDialog.getSelectedProperty()
           
 

Method parameters in org.openstreetmap.josm.gui.dialogs.properties with type arguments of type Tag
 void PresetListPanel.PresetHandler.updateTags(java.util.List<Tag> tags)
           
 

Uses of Tag in org.openstreetmap.josm.gui.dialogs.relation
 

Method parameters in org.openstreetmap.josm.gui.dialogs.relation with type arguments of type Tag
protected  void GenericRelationEditor.updateTags(java.util.List<Tag> tags)
           
 

Uses of Tag in org.openstreetmap.josm.gui.mappaint
 

Methods in org.openstreetmap.josm.gui.mappaint with parameters of type Tag
static javax.swing.ImageIcon MapPaintStyles.getNodeIcon(Tag tag)
           
static javax.swing.ImageIcon MapPaintStyles.getNodeIcon(Tag tag, boolean includeDeprecatedIcon)
           
 

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

Methods in org.openstreetmap.josm.gui.tagging that return types with arguments of type Tag
 java.util.List<Tag> TaggingPreset.getChangedTags()
           
 

Method parameters in org.openstreetmap.josm.gui.tagging with type arguments of type Tag
(package private) abstract  void TaggingPreset.Item.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Text.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Check.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.ComboMultiSelect.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Label.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Link.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Roles.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Optional.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Space.addCommands(java.util.List<Tag> changedTags)
           
 void TaggingPreset.Key.addCommands(java.util.List<Tag> changedTags)
           
static Command TaggingPreset.createCommand(java.util.Collection<OsmPrimitive> sel, java.util.List<Tag> changedTags)
           
 



JOSM