Package | Description |
---|---|
org.openstreetmap.josm.gui.dialogs.relation |
Toggle dialog allowing to display currently loaded relations and perform operations on them.
|
org.openstreetmap.josm.gui.tagging |
Provides classes for handling edition of OSM tags: tag tables, tag editors.
|
org.openstreetmap.josm.gui.tagging.ac |
Provides GUI classes for handling autocompletion of tags.
|
Modifier and Type | Field and Description |
---|---|
private AutoCompletionList |
MemberRoleCellEditor.autoCompletionList
user input is matched against this list of auto completion items
|
Modifier and Type | Field and Description |
---|---|
protected AutoCompletionList |
TagCellEditor.autoCompletionList
user input is matched against this list of auto completion items
|
Modifier and Type | Method and Description |
---|---|
AutoCompletionList |
TagTable.getAutoCompletionList()
Gets the
AutoCompletionList the cell editor is synchronized with |
AutoCompletionList |
TagCellEditor.getAutoCompletionList()
replies the
AutoCompletionList this table cell editor synchronizes with |
Modifier and Type | Method and Description |
---|---|
void |
TagTable.setAutoCompletionList(AutoCompletionList autoCompletionList)
Sets the editor autocompletion list
|
void |
TagCellEditor.setAutoCompletionList(AutoCompletionList autoCompletionList)
sets the
AutoCompletionList this table cell editor synchronizes with |
Modifier and Type | Field and Description |
---|---|
protected AutoCompletionList |
AutoCompletingTextField.autoCompletionList
the auto completion list user input is matched against
|
Modifier and Type | Method and Description |
---|---|
AutoCompletionList |
AutoCompletingTextField.getAutoCompletionList()
Returns the auto completion list.
|
Modifier and Type | Method and Description |
---|---|
void |
AutoCompletionList.add(AutoCompletionList other)
adds another
AutoCompletionList to this list. |
void |
AutoCompletionManager.populateWithKeys(AutoCompletionList list)
Populates the an
AutoCompletionList with the currently cached tag keys |
void |
AutoCompletionManager.populateWithMemberRoles(AutoCompletionList list)
Populates the
AutoCompletionList with the currently cached member roles. |
void |
AutoCompletionManager.populateWithMemberRoles(AutoCompletionList list,
Relation r)
Populates the
AutoCompletionList with the roles used in this relation
plus the ones defined in its applicable presets, if any. |
void |
AutoCompletionManager.populateWithTagValues(AutoCompletionList list,
java.util.List<java.lang.String> keys)
Populates the
AutoCompletionList with the currently cached values for some given tags |
void |
AutoCompletionManager.populateWithTagValues(AutoCompletionList list,
java.lang.String key)
Populates the an
AutoCompletionList with the currently cached values for a tag |
void |
AutoCompletingTextField.setAutoCompletionList(AutoCompletionList autoCompletionList)
Sets the auto completion list.
|