Uses of Class
org.jdesktop.swingx.autocomplete.ObjectToStringConverter

Packages that use ObjectToStringConverter
org.jdesktop.swingx.autocomplete Contains classes to enable automatic completion for JComboBox and other components. 
 

Uses of ObjectToStringConverter in org.jdesktop.swingx.autocomplete
 

Fields in org.jdesktop.swingx.autocomplete declared as ObjectToStringConverter
static ObjectToStringConverter ObjectToStringConverter.DEFAULT_IMPLEMENTATION
          This field contains the default implementation, that returns item.toString() for any item !=null.
 

Methods in org.jdesktop.swingx.autocomplete with parameters of type ObjectToStringConverter
static void AutoCompleteDecorator.decorate(JComboBox comboBox, ObjectToStringConverter stringConverter)
          Enables automatic completion for the given JComboBox.
static void AutoCompleteDecorator.decorate(JList list, JTextComponent textComponent, ObjectToStringConverter stringConverter)
          Enables automatic completion for the given JTextComponent based on the items contained in the given JList.
static void AutoCompleteDecorator.decorate(JTextComponent textComponent, List<?> items, boolean strictMatching, ObjectToStringConverter stringConverter)
          Enables automatic completion for the given JTextComponent based on the items contained in the given List.
 

Constructors in org.jdesktop.swingx.autocomplete with parameters of type ObjectToStringConverter
AutoCompleteComboBoxEditor(ComboBoxEditor wrapped, ObjectToStringConverter stringConverter)
          Creates a new AutoCompleteComboBoxEditor.
AutoCompleteDocument(AbstractAutoCompleteAdaptor adaptor, boolean strictMatching, ObjectToStringConverter stringConverter)
          Creates a new AutoCompleteDocument for the given AbstractAutoCompleteAdaptor.
AutoCompleteDocument(AbstractAutoCompleteAdaptor adaptor, boolean strictMatching, ObjectToStringConverter stringConverter, Document delegate)
          Creates a new AutoCompleteDocument for the given AbstractAutoCompleteAdaptor.
AutoCompleteStyledDocument(AbstractAutoCompleteAdaptor adaptor, boolean strictMatching, ObjectToStringConverter stringConverter)
           
AutoCompleteStyledDocument(AbstractAutoCompleteAdaptor adaptor, boolean strictMatching, ObjectToStringConverter stringConverter, StyledDocument delegate)
           
ListAdaptor(JList list, JTextComponent textComponent, ObjectToStringConverter stringConverter)
          Creates a new JListAdaptor for the given list and text component.