org.pf.pax
Interface XMLTagInterpreterController

All Superinterfaces:
org.xml.sax.ContentHandler
All Known Implementing Classes:
BaseXMLTagInterpreterController, XMLWriteController

public interface XMLTagInterpreterController
extends org.xml.sax.ContentHandler

This defines the API for tag interpreter controller classes in the PAX framework. Such a controller has the task to invoke the right tag interpreter object for each start element the SAX parser detects.

Version:
2.0
Author:
Manfred Duchrow

Method Summary
 void returnControl(java.lang.Object result)
          Gives back the control of the element interpretation to the controller.
 
Methods inherited from interface org.xml.sax.ContentHandler
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
 

Method Detail

returnControl

void returnControl(java.lang.Object result)
                   throws org.xml.sax.SAXException
Gives back the control of the element interpretation to the controller.

Parameters:
result - The resulting object from interpretation of a sub tag.
Throws:
org.xml.sax.SAXException