Uses of Class
org.openstreetmap.josm.gui.tagging.ac.AutoCompletionList

Packages that use AutoCompletionList
org.openstreetmap.josm.gui.dialogs.relation   
org.openstreetmap.josm.gui.tagging   
org.openstreetmap.josm.gui.tagging.ac   
 

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

Fields in org.openstreetmap.josm.gui.dialogs.relation declared as AutoCompletionList
private  AutoCompletionList MemberRoleCellEditor.autoCompletionList
          user input is matched against this list of auto completion items
 

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

Fields in org.openstreetmap.josm.gui.tagging declared as AutoCompletionList
private  AutoCompletionList TagEditorPanel.acList
           
protected  AutoCompletionList TagCellEditor.autoCompletionList
          user input is matched against this list of auto completion items
 

Methods in org.openstreetmap.josm.gui.tagging that return AutoCompletionList
 AutoCompletionList TagCellEditor.getAutoCompletionList()
          replies the AutoCompletionList this table cell editor synchronizes with
 AutoCompletionList TagTable.getAutoCompletionList()
           
 

Methods in org.openstreetmap.josm.gui.tagging with parameters of type AutoCompletionList
 void TagCellEditor.setAutoCompletionList(AutoCompletionList autoCompletionList)
          sets the AutoCompletionList this table cell editor synchronizes with
 void TagTable.setAutoCompletionList(AutoCompletionList autoCompletionList)
           
 

Uses of AutoCompletionList in org.openstreetmap.josm.gui.tagging.ac
 

Fields in org.openstreetmap.josm.gui.tagging.ac declared as AutoCompletionList
protected  AutoCompletionList AutoCompletingTextField.autoCompletionList
          the auto completion list user input is matched against
 

Methods in org.openstreetmap.josm.gui.tagging.ac that return AutoCompletionList
 AutoCompletionList AutoCompletingTextField.getAutoCompletionList()
           
 

Methods in org.openstreetmap.josm.gui.tagging.ac with parameters of type AutoCompletionList
 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 an AutoCompletionList with the currently cached member roles.
 void AutoCompletionManager.populateWithTagValues(AutoCompletionList list, java.util.List<java.lang.String> keys)
          Populates the an 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
 



JOSM