Uses of Interface
ca.odell.glazedlists.matchers.MatcherEditor
-
Packages that use MatcherEditor 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 MatcherEditor in ca.odell.glazedlists
Methods in ca.odell.glazedlists that return MatcherEditor Modifier and Type Method Description static <E> MatcherEditor<E>
GlazedLists. fixedMatcherEditor(Matcher<E> matcher)
Get aMatcherEditor
that is fixed on the specifiedMatcher
.Methods in ca.odell.glazedlists with parameters of type MatcherEditor Modifier and Type Method Description void
FilterList. setMatcherEditor(MatcherEditor<? super E> editor)
Set theMatcherEditor
which provides a dynamicMatcher
to determine which elements shall be filtered.Constructors in ca.odell.glazedlists with parameters of type MatcherEditor Constructor Description FilterList(EventList<E> source, MatcherEditor<? super E> matcherEditor)
Convenience constructor for creating aFilterList
and setting itsMatcherEditor
. -
Uses of MatcherEditor in ca.odell.glazedlists.matchers
Classes in ca.odell.glazedlists.matchers that implement MatcherEditor Modifier and Type Class Description class
AbstractMatcherEditor<E>
Basic building block forMatcherEditor
implementations that handles the details of dealing with registeredMatcherEditor.Listener
s.class
AbstractMatcherEditorListenerSupport<E>
Basic building block forMatcherEditor
implementations that handles the details of dealing with registeredMatcherEditor.Listener
s.class
CompositeMatcherEditor<E>
AMatcherEditor
composed of zero or more delegateMatcherEditor
s.class
RangeMatcherEditor<D extends java.lang.Comparable,E>
A MatcherEditor that produces Matchers which match Objects if they lie within a range ofComparable
s.class
SearchEngineTextMatcherEditor<E>
A MatcherEditor that matches Objects against search text in a format similiar to search engines.class
TextMatcherEditor<E>
A matcher editor that matches Objects that contain a filter text string.class
ThreadedMatcherEditor<E>
A MatcherEditor which decorates a source MatcherEditor with functionality.class
ThresholdMatcherEditor<E,T>
AMatcherEditor
that filters elements based on whether they are greater than or less than a threshold.Methods in ca.odell.glazedlists.matchers that return MatcherEditor Modifier and Type Method Description MatcherEditor<E>
MatcherEditor.Event. getMatcherEditor()
Get theMatcherEditor
that originated this event, or null if this event originated directly from aFilterList
in a call toFilterList.setMatcher(Matcher)
.static <E> MatcherEditor<E>
Matchers. weakReferenceProxy(MatcherEditor<E> matcherEditor)
Provides a proxy to another MatcherEditor that may go out of scope without explicitly removing itself from the source MatcherEditor's set of listeners.Methods in ca.odell.glazedlists.matchers that return types with arguments of type MatcherEditor Modifier and Type Method Description EventList<MatcherEditor<E>>
CompositeMatcherEditor. getMatcherEditors()
Methods in ca.odell.glazedlists.matchers with parameters of type MatcherEditor Modifier and Type Method Description static <E> MatcherEditor<E>
Matchers. weakReferenceProxy(MatcherEditor<E> matcherEditor)
Provides a proxy to another MatcherEditor that may go out of scope without explicitly removing itself from the source MatcherEditor's set of listeners.Constructors in ca.odell.glazedlists.matchers with parameters of type MatcherEditor Constructor Description Event(MatcherEditor<E> matcherEditor, int changeType, Matcher<E> matcher)
ThreadedMatcherEditor(MatcherEditor<E> source)
Creates a ThreadedMatcherEditor which wraps the givensource
.Constructor parameters in ca.odell.glazedlists.matchers with type arguments of type MatcherEditor Constructor Description CompositeMatcherEditor(EventList<MatcherEditor<E>> matcherEditors)
Create aCompositeMatcherEditor
that creates Matchers from the union of the specifiedEventList
ofMatcherEditor
s. -
Uses of MatcherEditor in ca.odell.glazedlists.swing
Classes in ca.odell.glazedlists.swing that implement MatcherEditor Modifier and Type Class Description class
SearchEngineTextFieldMatcherEditor<E>
A MatcherEditor that matches Objects that contain the filter text located within aJTextField
.class
TextComponentMatcherEditor<E>
A MatcherEditor that matches Objects that contain the filter text located within aDocument
.
-