Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.jdom.filter

Classes to represent the components of an XML document.

See:
          Description

Interface Summary
Filter A generalized filter to restrict visibility or mutability on a list.
 

Class Summary
AbstractFilter Partial implementation of Filter.
AndFilter Allow two filters to be chained together with a logical and operation.
ContentFilter A general purpose Filter able to represent all legal JDOM objects or a specific subset.
ElementFilter A Filter that only matches org.jdom.Element objects.
NegateFilter Filter that is the logical negation operation of another filter.
OrFilter Allow two filters to be chained together with a logical or operation.
 

Package org.jdom.filter Description

Classes to represent the components of an XML document. The Verifier is a special class useful in ensuring well-formedness of documents. The Parent interface is implemented by Document and Element exposing their commonality. The Content abstract class is extended by all the node types of a document except Document itself. The JDOMFactory interface and DefaultJDOMFactory standard implementation provide advanced users with the ability to create subtypes of the org.jdom classes.