Uses of Class
org.htmlparser.parserapplications.filterbuilder.Filter
-
Packages that use Filter Package Description org.htmlparser.parserapplications.filterbuilder org.htmlparser.parserapplications.filterbuilder.wrappers -
-
Uses of Filter in org.htmlparser.parserapplications.filterbuilder
Fields in org.htmlparser.parserapplications.filterbuilder declared as Filter Modifier and Type Field Description protected FilterSubFilterList. mHomeThe parent filter wrapper.Methods in org.htmlparser.parserapplications.filterbuilder that return Filter Modifier and Type Method Description Filter[]FilterBuilder. getFilters()Retrieve the top level filters in the main window.Filter[]SubFilterList. getFilters()Return the list of filters in this container.protected Filter[]FilterBuilder. getSelection()Return the current selection set as an array.static FilterFilter. instantiate(java.lang.String class_name)Create a new filter from the class name.protected FilterFilterBuilder. lastSelected()Return the last filter added to the selection set.static Filter[]Filter. reconstitute(java.lang.String string, Parser context)Returns the filters represented by the string.static FilterFilter. wrap(NodeFilter filter, Parser context)Returns a wrapped filter.Methods in org.htmlparser.parserapplications.filterbuilder with parameters of type Filter Modifier and Type Method Description voidSubFilterList. addFilter(Filter filter)Add a filter to the container contents.voidSubFilterList. addFilter(Filter filter, int index)Add a filter to the container at a specific position.protected voidFilterBuilder. addSelection(Filter filter)Add a filter to the current selection set.static java.lang.StringFilter. deconstitute(Filter[] filters)Returns a string serialization of the filters.protected voidFilterBuilder. insertFilters(Filter[] filters, java.awt.Point point, SubFilterList list)Adds a set of filters to the main panel or a sublist.voidSubFilterList. removeFilter(Filter filter)Remove a filter from the container.protected voidFilterBuilder. removeSelection(Filter filter)Remove a filter from the current selection set.protected booleanFilterBuilder. selectionContains(Filter filter)Check if the current selection set contains the given filter.voidFilterBuilder. setExpanded(Filter[] filters, boolean expanded, boolean recursive)Expand or collapse filters, possibly recursively.voidFilterBuilder. setupDropTargets(Filter[] filters)Set up drop targets.voidFilterBuilder. setupMouseListeners(Filter[] filters)Set up mouse listeners.Constructors in org.htmlparser.parserapplications.filterbuilder with parameters of type Filter Constructor Description SubFilterList(Filter home, java.lang.String title, int max)Creates a container panel. -
Uses of Filter in org.htmlparser.parserapplications.filterbuilder.wrappers
Subclasses of Filter in org.htmlparser.parserapplications.filterbuilder.wrappers Modifier and Type Class Description classAndFilterWrapperWrapper for AndFilters.classHasAttributeFilterWrapperWrapper for HasAttributeFilters.classHasChildFilterWrapperWrapper for HasChildFilters.classHasParentFilterWrapperWrapper for HasParentFilters.classHasSiblingFilterWrapperWrapper for HasSiblingFilters.classNodeClassFilterWrapperWrapper for NodeClassFilters.classNotFilterWrapperWrapper for NotFilters.classOrFilterWrapperWrapper for OrFilters.classRegexFilterWrapperWrapper for RegexFilters.classStringFilterWrapperWrapper for StringFilters.classTagNameFilterWrapperWrapper for TagNameFilters.
-