Class CalcboxOutputReader
java.lang.Object
org.frankframework.extensions.rekenbox.CalcboxOutputReader
- All Implemented Interfaces:
XMLReader
This is the reader of the Calcbox output. This class
uses the XMLReader interface, so it reads the
Calcbox output in the same way it reads XML
Change History
Author Date Version Details
Colin Wilmans 18-04-2002 1.0 First version
Tim N. van der Leeuw 30-07-2002 1.1 Better handling of
labels with sequence
numbers.
Split-method taken out
and put in Util-object.
Boris O Maltha 23-01-2003 1.2 Added logging
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn the current content handler.Return the current DTD handler.Return the current entity resolver.Return the current error handler.booleangetFeature(String name) Look up the value of a feature.getProperty(String name) Look up the value of a property.voidParse an XML document from a system identifier (URI).voidparse(InputSource input) Parse the input (CalcBox Message Format)voidsetContentHandler(ContentHandler handler) Allow an application to register a content event handler.voidsetDTDHandler(DTDHandler handler) Allow an application to register a DTD event handler.voidsetEntityResolver(EntityResolver resolver) Allow an application to register an entity resolver.voidsetErrorHandler(ErrorHandler handler) Allow an application to register an error event handler.voidsetFeature(String name, boolean value) Set the state of a feature.voidsetProperty(String name, Object value) Set the value of a property.
-
Constructor Details
-
CalcboxOutputReader
public CalcboxOutputReader()
-
-
Method Details
-
parse
Parse the input (CalcBox Message Format)- Specified by:
parsein interfaceXMLReader- Throws:
IOExceptionSAXException
-
setContentHandler
Allow an application to register a content event handler.- Specified by:
setContentHandlerin interfaceXMLReader
-
getContentHandler
Return the current content handler.- Specified by:
getContentHandlerin interfaceXMLReader
-
setErrorHandler
Allow an application to register an error event handler.- Specified by:
setErrorHandlerin interfaceXMLReader
-
getErrorHandler
Return the current error handler.- Specified by:
getErrorHandlerin interfaceXMLReader
-
parse
Parse an XML document from a system identifier (URI).- Specified by:
parsein interfaceXMLReader- Throws:
IOExceptionSAXException
-
getDTDHandler
Return the current DTD handler.- Specified by:
getDTDHandlerin interfaceXMLReader
-
getEntityResolver
Return the current entity resolver.- Specified by:
getEntityResolverin interfaceXMLReader
-
setEntityResolver
Allow an application to register an entity resolver.- Specified by:
setEntityResolverin interfaceXMLReader
-
setDTDHandler
Allow an application to register a DTD event handler.- Specified by:
setDTDHandlerin interfaceXMLReader
-
getProperty
Look up the value of a property.- Specified by:
getPropertyin interfaceXMLReader
-
setProperty
Set the value of a property.- Specified by:
setPropertyin interfaceXMLReader
-
setFeature
Set the state of a feature.- Specified by:
setFeaturein interfaceXMLReader
-
getFeature
Look up the value of a feature.- Specified by:
getFeaturein interfaceXMLReader
-