Uses of Class
org.openstreetmap.josm.gui.tagging.TagModel
-
Packages that use TagModel Package Description org.openstreetmap.josm.gui.tagging Provides classes for handling edition of OSM tags: tag tables, tag editors. -
-
Uses of TagModel in org.openstreetmap.josm.gui.tagging
Fields in org.openstreetmap.josm.gui.tagging declared as TagModel Modifier and Type Field Description protected TagModel
TagCellEditor. currentTag
Fields in org.openstreetmap.josm.gui.tagging with type parameters of type TagModel Modifier and Type Field Description protected List<TagModel>
TagEditorModel. tags
the list holding the tagsMethods in org.openstreetmap.josm.gui.tagging that return TagModel Modifier and Type Method Description TagModel
TagEditorModel. get(int idx)
Gets a tag rowTagModel
TagEditorModel. get(String name)
replies the tag with namename
; null, if no such tag existsMethods in org.openstreetmap.josm.gui.tagging with parameters of type TagModel Modifier and Type Method Description void
TagEditorModel. add(TagModel tag)
adds a tag to the modelprotected Command
TagEditorModel. createUpdateTagCommand(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)
Add a tag at the beginning of the table.protected void
TagCellRenderer. renderTagName(TagModel tag)
renders the name of a tag in the second column of the tableprotected void
TagCellRenderer. renderTagValue(TagModel tag)
renders the value of a a tag in the third column of the tablevoid
TagEditorModel. updateTagName(TagModel tag, 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, 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
-