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

Packages that use AutoCompletionListItem
org.openstreetmap.josm.gui.dialogs.properties   
org.openstreetmap.josm.gui.tagging.ac   
org.openstreetmap.josm.gui.widgets   
 

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

Fields in org.openstreetmap.josm.gui.dialogs.properties with type parameters of type AutoCompletionListItem
(package private)  java.util.Comparator<AutoCompletionListItem> PropertiesDialog.defaultACItemComparator
           
 

Method parameters in org.openstreetmap.josm.gui.dialogs.properties with type arguments of type AutoCompletionListItem
private  java.awt.event.FocusAdapter PropertiesDialog.addFocusAdapter(AutoCompletingComboBox keys, AutoCompletingComboBox values, AutoCompletionManager autocomplete, java.util.Comparator<AutoCompletionListItem> comparator)
          Create a focus handling adapter and apply in to the editor component of value autocompletion box.
 

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

Fields in org.openstreetmap.josm.gui.tagging.ac with type parameters of type AutoCompletionListItem
private  java.util.ArrayList<AutoCompletionListItem> AutoCompletionList.filtered
          the filtered list of AutoCompletionItems
private  java.util.ArrayList<AutoCompletionListItem> AutoCompletionList.list
          the bare list of AutoCompletionItems
private  java.util.Map<java.lang.String,AutoCompletionListItem> AutoCompletionList.valutToItemMap
          map from value to priority
 

Methods in org.openstreetmap.josm.gui.tagging.ac that return AutoCompletionListItem
 AutoCompletionListItem AutoCompletionList.getFilteredItem(int idx)
          replies the idx-th item from the list of filtered items
 

Methods in org.openstreetmap.josm.gui.tagging.ac that return types with arguments of type AutoCompletionListItem
 java.util.List<AutoCompletionListItem> AutoCompletionManager.getKeys()
          Returns the currently cached tag keys.
(package private)  java.util.ArrayList<AutoCompletionListItem> AutoCompletionList.getList()
           
(package private)  java.util.List<AutoCompletionListItem> AutoCompletionList.getUnmodifiableList()
           
 java.util.List<AutoCompletionListItem> AutoCompletionManager.getValues(java.util.List<java.lang.String> keys)
          Returns the currently cached tag values for a given list of tag keys.
 java.util.List<AutoCompletionListItem> AutoCompletionManager.getValues(java.lang.String key)
          Returns the currently cached tag values for a given tag key.
 

Methods in org.openstreetmap.josm.gui.tagging.ac with parameters of type AutoCompletionListItem
 void AutoCompletionList.add(AutoCompletionListItem item)
          adds an AutoCompletionListItem to the list.
protected  void AutoCompletionList.appendOrUpdatePriority(AutoCompletionListItem toAdd)
           
 int AutoCompletionListItem.compareTo(AutoCompletionListItem other)
           
 boolean AutoCompletionList.contains(AutoCompletionListItem item)
          checks whether a specific item is already in the list.
 

Method parameters in org.openstreetmap.josm.gui.tagging.ac with type arguments of type AutoCompletionListItem
 void AutoCompletionList.add(java.util.List<AutoCompletionListItem> other)
          adds a list of AutoCompletionListItem to this list.
 void AutoCompletingComboBox.setPossibleACItems(java.util.Collection<AutoCompletionListItem> elems)
          sets the items of the combobox to the given AutoCompletionListItems
 

Uses of AutoCompletionListItem in org.openstreetmap.josm.gui.widgets
 

Methods in org.openstreetmap.josm.gui.widgets that return types with arguments of type AutoCompletionListItem
 java.util.Iterator<AutoCompletionListItem> ComboBoxHistory.iterator()
           
 



JOSM