| org.apache.cocoon.components.sax.XMLDeserializer
All known Subclasses: org.apache.cocoon.components.sax.XMLByteStreamInterpreter,
XMLDeserializer | public interface XMLDeserializer extends XMLProducer,Component(Code) | | This interfaces identifies classes that deserialize XML data, sending SAX
events to the configured XMLConsumer (or SAX
ContentHandler and LexicalHandler ).
The production of the xml data is started by passing an
the xml information to the deserialize
method.
It is beyond the scope of this interface to specify the format of
the serialized data.
author: Carsten Ziegeler version: CVS $Id: XMLDeserializer.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
void | deserialize(Object saxFragment) Deserialize the xml data and stream it. |
deserialize | void deserialize(Object saxFragment) throws SAXException(Code) | | Deserialize the xml data and stream it.
Parameters: saxFragment - The xml data. |
|
|