Package net.beandocument

Provides a DOM Level 1 document of any Java bean implementation.

See:
          Description

Interface Summary
BeanContentFilter Interface for defining a filter in bean documents.
 

Class Summary
BeanAttribute Implementation for attributes in bean context
BeanBaseNode Base node implementation for all bean node stuff which is general for the DOM implementation
BeanCollectionElement Implements Element for element lists
BeanDocument Wraps a Java bean into a pseudo XML document instance.
BeanDocumentBuilder Builds bean based documents.
BeanDocumentFragment Document Fragment implementation for bean
BeanElement Base implementation for bean document elements
BeanElementFactory Helper class to analyze a bean for its behavior and data and generate the corresponding element types
BeanMapElement Implements Element for element maps
BeanNamedNodeMap Map implementation of NamedNodeMap for bean documents
BeanNodeList NodeList implementation to capture all generated nodes in the document
BeanObjectElement Element implementation for object type
BeanSimpleTypeElement Element implementation for a simple type.
SimpleBeanContentFilter Simple filter implementation which matches the given content as regular expressions against the given conditions.
 

Package net.beandocument Description

Provides a DOM Level 1 document of any Java bean implementation.
This package is a simple implementation to wrap a Java bean into a DOM document. All public bean properties and methods that result a simple value are exposed to the DOM object and can be accessed from the parser. Use the BeanDocumentBuilder class to create new document using any Java bean.

See Also:
BeanDocumentBuilder.getDocument(Object)