org.apache.cocoon.components.elementprocessor |
|
Java Source File Name | Type | Comment |
CannotCreateElementProcessorException.java | Class | Exception to be thrown when an ElementProcessor cannot be created. |
ElementProcessor.java | Interface | The ElementProcessor interface defines behavior for classes that
can handle a particular XML element's content.
The life cycle of an ElementProcessor instance is:
- Creation
- Initialization via a call to initialize
- Acquisition of element data via calls to acceptCharacters
and acceptWhitespaceCharacters
- Completion of processing via a call to endProcessing
In response to a startElement event, the POIFSSerializer creates an
ElementProcessor, delegating the act of creation to an
ElementProcessorFactory, and then initializes the
ElementProcessor. |
ElementProcessorFactory.java | Interface | Create instances of specific ElementProcessor implementations to
handle specific XML elements and their content. |
LocaleAware.java | Interface | The LocaleAware interface is for element processors whom require the locale
configuration string to control their behavior. |