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/Matchersfor 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 aMatcherEditorthat is fixed on the specifiedMatcher.Methods in ca.odell.glazedlists with parameters of type MatcherEditor Modifier and Type Method Description voidFilterList. setMatcherEditor(MatcherEditor<? super E> editor)Set theMatcherEditorwhich provides a dynamicMatcherto 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 aFilterListand setting itsMatcherEditor. -
Uses of MatcherEditor in ca.odell.glazedlists.matchers
Classes in ca.odell.glazedlists.matchers that implement MatcherEditor Modifier and Type Class Description classAbstractMatcherEditor<E>Basic building block forMatcherEditorimplementations that handles the details of dealing with registeredMatcherEditor.Listeners.classAbstractMatcherEditorListenerSupport<E>Basic building block forMatcherEditorimplementations that handles the details of dealing with registeredMatcherEditor.Listeners.classCompositeMatcherEditor<E>AMatcherEditorcomposed of zero or more delegateMatcherEditors.classRangeMatcherEditor<D extends java.lang.Comparable,E>A MatcherEditor that produces Matchers which match Objects if they lie within a range ofComparables.classSearchEngineTextMatcherEditor<E>A MatcherEditor that matches Objects against search text in a format similiar to search engines.classTextMatcherEditor<E>A matcher editor that matches Objects that contain a filter text string.classThreadedMatcherEditor<E>A MatcherEditor which decorates a source MatcherEditor with functionality.classThresholdMatcherEditor<E,T>AMatcherEditorthat 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 theMatcherEditorthat originated this event, or null if this event originated directly from aFilterListin 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 aCompositeMatcherEditorthat creates Matchers from the union of the specifiedEventListofMatcherEditors. -
Uses of MatcherEditor in ca.odell.glazedlists.swing
Classes in ca.odell.glazedlists.swing that implement MatcherEditor Modifier and Type Class Description classSearchEngineTextFieldMatcherEditor<E>A MatcherEditor that matches Objects that contain the filter text located within aJTextField.classTextComponentMatcherEditor<E>A MatcherEditor that matches Objects that contain the filter text located within aDocument.
-