JDOM
1.0

Uses of Interface
org.jdom.filter.Filter

Packages that use Filter
org.jdom Classes to represent the components of an XML document. 
org.jdom.filter Classes to programmatically filter nodes of a document based on type, name, value, or other aspects and to boolean and/or/negate these rules. 
 

Uses of Filter in org.jdom
 

Methods in org.jdom with parameters of type Filter
 List Document.getContent(Filter filter)
          Return a filtered view of this Document's content.
 List Document.removeContent(Filter filter)
          Remove all child content from this parent matching the supplied filter.
 Iterator Document.getDescendants(Filter filter)
          Returns an iterator that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.
 List Parent.getContent(Filter filter)
          Returns as a List the content of this parent that matches the supplied filter.
 List Parent.removeContent(Filter filter)
          Removes from this parent all child content matching the given filter and returns a list of the detached children.
 Iterator Parent.getDescendants(Filter filter)
          Returns an Iterator that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.
 List Element.getContent(Filter filter)
          Return a filter view of this Element's content.
 List Element.removeContent(Filter filter)
          Remove all child content from this parent matching the supplied filter.
 Iterator Element.getDescendants(Filter filter)
          Returns an iterator that walks over all descendants in document order applying the Filter to return only elements that match the filter rule.
 

Uses of Filter in org.jdom.filter
 

Classes in org.jdom.filter that implement Filter
 class AbstractFilter
          Partial implementation of Filter.
 class ContentFilter
          A general purpose Filter able to represent all legal JDOM objects or a specific subset.
 class ElementFilter
          A Filter that only matches Element objects.
 

Methods in org.jdom.filter that return Filter
 Filter AbstractFilter.negate()
           
 Filter AbstractFilter.or(Filter filter)
           
 Filter AbstractFilter.and(Filter filter)
           
 

Methods in org.jdom.filter with parameters of type Filter
 Filter AbstractFilter.or(Filter filter)
           
 Filter AbstractFilter.and(Filter filter)
           
 


JDOM
1.0

Copyright ? 2004 Jason Hunter, Brett McLaughlin. All Rights Reserved.