Uses of Interface
ca.odell.glazedlists.TextFilterator
-
Packages that use TextFilterator Package Description ca.odell.glazedlists ca.odell.glazedlists.matchers Implementations and classes useful for creating implementations ofMatcherEditor
/Matchers
for use withFilterLists
.ca.odell.glazedlists.swing -
-
Uses of TextFilterator in ca.odell.glazedlists
Methods in ca.odell.glazedlists that return TextFilterator Modifier and Type Method Description static <E> TextFilterator<E>
GlazedLists. textFilterator(java.lang.Class<E> beanClass, java.lang.String... propertyNames)
Creates aTextFilterator
that searches the given JavaBean properties.static <E> TextFilterator<E>
GlazedLists. textFilterator(java.lang.String... propertyNames)
Creates aTextFilterator
that searches the given JavaBean properties.static <E> TextFilterator<E>
GlazedLists. toStringTextFilterator()
Creates aTextFilterator
that searches against an Object'stoString()
value. -
Uses of TextFilterator in ca.odell.glazedlists.matchers
Methods in ca.odell.glazedlists.matchers that return TextFilterator Modifier and Type Method Description TextFilterator<? super E>
TextMatcherEditor. getFilterator()
Get the filterator used to extract Strings from the matched elements.TextFilterator<? super E>
SearchEngineTextMatcherEditor.Field. getTextFilterator()
Returns the TextFilterator capable of extracting only the fields that should be considered by SearchTerms using this Field.Methods in ca.odell.glazedlists.matchers with parameters of type TextFilterator Modifier and Type Method Description void
TextMatcherEditor. setFilterator(TextFilterator<? super E> filterator)
Set the filterator used to extract Strings from the matched elements.Constructors in ca.odell.glazedlists.matchers with parameters of type TextFilterator Constructor Description Field(java.lang.String name, TextFilterator<? super E> textFilterator)
Creates a field with a name andTextFilterator
.SearchEngineTextMatcherEditor(TextFilterator<? super E> textFilterator)
Creates a SearchEngineTextMatcherEditor with the giventextFilterator
.TextMatcherEditor(TextFilterator<? super E> filterator)
Creates aTextMatcherEditor
that matches Objects using the specifiedTextFilterator
to get theString
s to search. -
Uses of TextFilterator in ca.odell.glazedlists.swing
Methods in ca.odell.glazedlists.swing that return TextFilterator Modifier and Type Method Description TextFilterator<? super E>
AutoCompleteSupport. getTextFilterator()
Returns theTextFilterator
that extracts searchable strings from each item in theComboBoxModel
.Methods in ca.odell.glazedlists.swing with parameters of type TextFilterator Modifier and Type Method Description static <E> AutoCompleteSupport<E>
AutoCompleteSupport. install(javax.swing.JComboBox comboBox, EventList<E> items, TextFilterator<? super E> filterator)
Installs support for autocompletion into thecomboBox
and returns the support object that is actually providing those facilities.static <E> AutoCompleteSupport<E>
AutoCompleteSupport. install(javax.swing.JComboBox comboBox, EventList<E> items, TextFilterator<? super E> filterator, java.text.Format format)
Installs support for autocompletion into thecomboBox
and returns the support object that is actually providing those facilities.Constructors in ca.odell.glazedlists.swing with parameters of type TextFilterator Constructor Description SearchEngineTextFieldMatcherEditor(javax.swing.JTextField textField, TextFilterator<? super E> textFilterator)
Creates a TextMatcherEditor bound to the giventextField
with the giventextFilterator
.TextComponentMatcherEditor(javax.swing.text.Document document, TextFilterator<? super E> textFilterator)
Creates a TextMatcherEditor bound to the givendocument
with the giventextFilterator
.TextComponentMatcherEditor(javax.swing.text.JTextComponent textComponent, TextFilterator<? super E> textFilterator)
Creates a TextMatcherEditor bound to theDocument
backing the giventextComponent
with the giventextFilterator
.TextComponentMatcherEditor(javax.swing.text.JTextComponent textComponent, TextFilterator<? super E> textFilterator, boolean live)
Creates a TextMatcherEditor bound to theDocument
backing the giventextComponent
with the giventextFilterator
.
-