Uses of Class
org.htmlparser.parserapplications.filterbuilder.Filter
Packages that use Filter
Package
Description
-
Uses of Filter in org.htmlparser.parserapplications.filterbuilder
Fields in org.htmlparser.parserapplications.filterbuilder declared as FilterMethods in org.htmlparser.parserapplications.filterbuilder that return FilterModifier and TypeMethodDescriptionFilter[]
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 Filter
Filter.instantiate
(String class_name) Create a new filter from the class name.protected Filter
FilterBuilder.lastSelected()
Return the last filter added to the selection set.static Filter[]
Filter.reconstitute
(String string, Parser context) Returns the filters represented by the string.static Filter
Filter.wrap
(NodeFilter filter, Parser context) Returns a wrapped filter.Methods in org.htmlparser.parserapplications.filterbuilder with parameters of type FilterModifier and TypeMethodDescriptionvoid
Add a filter to the container contents.void
Add a filter to the container at a specific position.protected void
FilterBuilder.addSelection
(Filter filter) Add a filter to the current selection set.static String
Filter.deconstitute
(Filter[] filters) Returns a string serialization of the filters.protected void
FilterBuilder.insertFilters
(Filter[] filters, Point point, SubFilterList list) Adds a set of filters to the main panel or a sublist.void
SubFilterList.removeFilter
(Filter filter) Remove a filter from the container.protected void
FilterBuilder.removeSelection
(Filter filter) Remove a filter from the current selection set.protected boolean
FilterBuilder.selectionContains
(Filter filter) Check if the current selection set contains the given filter.void
FilterBuilder.setExpanded
(Filter[] filters, boolean expanded, boolean recursive) Expand or collapse filters, possibly recursively.void
FilterBuilder.setupDropTargets
(Filter[] filters) Set up drop targets.void
FilterBuilder.setupMouseListeners
(Filter[] filters) Set up mouse listeners.Constructors in org.htmlparser.parserapplications.filterbuilder with parameters of type FilterModifierConstructorDescriptionSubFilterList
(Filter home, 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.wrappersModifier and TypeClassDescriptionclass
Wrapper for AndFilters.class
Wrapper for HasAttributeFilters.class
Wrapper for HasChildFilters.class
Wrapper for HasParentFilters.class
Wrapper for HasSiblingFilters.class
Wrapper for NodeClassFilters.class
Wrapper for NotFilters.class
Wrapper for OrFilters.class
Wrapper for RegexFilters.class
Wrapper for StringFilters.class
Wrapper for TagNameFilters.