See: Description
| Interface | Description |
|---|---|
| AttributeProcessor<T> |
An
AttributeProcessor is responsible for processing XmlAttribute content
to return a strongly-typed value. |
| ConditionalElementProcessor<T> |
A
ConditionalElementProcessor is an ElementProcessor that supports conditionally
processing XmlElements. |
| DocumentElementPreprocessor.ElementPreprocessor |
An
DocumentElementPreprocessor.ElementPreprocessor provides a mechanism to examine and optionally
mutate an XmlElement prior to it being processed by a
ElementProcessor. |
| DocumentPreprocessor |
A
DocumentPreprocessor provides a mechanism to pre-process an
XmlElement, representing part or all of an XmlDocument
prior to the said XmlElement being processes using configured
ElementProcessors. |
| DocumentProcessor.Dependencies | |
| ElementProcessor<T> |
An
ElementProcessor is responsible for processing XmlElement content
to return a strongly-typed value. |
| NamespaceHandler |
A
NamespaceHandler is responsible for defining the
DocumentPreprocessor, ElementProcessors and
AttributeProcessors
required for processing xml content belonging to a specific xml namespace
used in an xml document. |
| ProcessingContext |
A
ProcessingContext provides contextual information concerning the processing of content in an xml document. |
| Class | Description |
|---|---|
| AbstractNamespaceHandler |
An
AbstractNamespaceHandler provides a base implementation of a NamespaceHandler
with support for implicit and explicit registration of ElementProcessors and
AttributeProcessors for those xml attributes and elements occurring in the associated xml namespace. |
| DefaultProcessingContext |
The default implementation of a
ProcessingContext. |
| DocumentElementPreprocessor |
A
DocumentElementPreprocessor is a DocumentPreprocessor
that is designed to operate with one or more DocumentElementPreprocessor.ElementPreprocessors. |
| DocumentProcessor |
A
DocumentProcessor is responsible for processing in an XmlDocument to produce a resulting
configured resource. |
| DocumentProcessor.DefaultDependencies |
The
DocumentProcessor.DefaultDependencies is the default implementation of the
DocumentProcessor DocumentProcessor.Dependencies interface. |
| SimpleAttributeProcessor<T> |
A
SimpleAttributeProcessor is a simple AttributeProcessor implementation that will construct,
initialize (via constructor injection) and return a specific type of object based on information in
an XmlAttribute. |
| SimpleElementProcessor<T> |
A
SimpleElementProcessor is an ElementProcessor implementation that will construct,
initialize (via constructor injection) and return a specific type of object based on information in
an XmlElement. |
| Annotation Type | Description |
|---|---|
| XmlSimpleName |
Denotes that a class is associated with the processing of a
specifically named Xml element or attribute.
|