Uses of Class
org.openstreetmap.josm.gui.tagging.TagModel

Packages that use TagModel
org.openstreetmap.josm.gui.tagging   
 

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

Fields in org.openstreetmap.josm.gui.tagging declared as TagModel
protected  TagModel TagCellEditor.currentTag
           
 

Fields in org.openstreetmap.josm.gui.tagging with type parameters of type TagModel
protected  java.util.ArrayList<TagModel> TagEditorModel.tags
          the list holding the tags
 

Methods in org.openstreetmap.josm.gui.tagging that return TagModel
 TagModel TagEditorModel.get(int idx)
           
 TagModel TagEditorModel.get(java.lang.String name)
          replies the tag with name name; null, if no such tag exists
 

Methods in org.openstreetmap.josm.gui.tagging with parameters of type TagModel
 void TagEditorModel.add(TagModel tag)
          adds a tag to the model
protected  Command TagEditorModel.createUpdateTagCommand(java.util.Collection<OsmPrimitive> primitives, TagModel tag)
           
protected  void TagCellEditor.initAutoCompletionListForKeys(TagEditorModel model, TagModel currentTag)
          initializes the auto completion list when the table cell editor starts to edit the key of a tag.
 void TagEditorModel.prepend(TagModel tag)
           
protected  void TagCellRenderer.renderTagName(TagModel tag)
          renders the name of a tag in the second column of the table
protected  void TagCellRenderer.renderTagValue(TagModel tag)
          renders the value of a a tag in the third column of the table
 void TagEditorModel.updateTagName(TagModel tag, java.lang.String newName)
          updates the name of a tag and sets the dirty state to true if the new name is different from the old name.
 void TagEditorModel.updateTagValue(TagModel tag, java.lang.String newValue)
          updates the value value of a tag and sets the dirty state to true if the new name is different from the old name
 



JOSM