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.boolean
getFeature
(String name) Look up the value of a feature.getProperty
(String name) Look up the value of a property.void
Parse an XML document from a system identifier (URI).void
parse
(InputSource input) Parse the input (CalcBox Message Format)void
setContentHandler
(ContentHandler handler) Allow an application to register a content event handler.void
setDTDHandler
(DTDHandler handler) Allow an application to register a DTD event handler.void
setEntityResolver
(EntityResolver resolver) Allow an application to register an entity resolver.void
setErrorHandler
(ErrorHandler handler) Allow an application to register an error event handler.void
setFeature
(String name, boolean value) Set the state of a feature.void
setProperty
(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:
parse
in interfaceXMLReader
- Throws:
IOException
SAXException
-
setContentHandler
Allow an application to register a content event handler.- Specified by:
setContentHandler
in interfaceXMLReader
-
getContentHandler
Return the current content handler.- Specified by:
getContentHandler
in interfaceXMLReader
-
setErrorHandler
Allow an application to register an error event handler.- Specified by:
setErrorHandler
in interfaceXMLReader
-
getErrorHandler
Return the current error handler.- Specified by:
getErrorHandler
in interfaceXMLReader
-
parse
Parse an XML document from a system identifier (URI).- Specified by:
parse
in interfaceXMLReader
- Throws:
IOException
SAXException
-
getDTDHandler
Return the current DTD handler.- Specified by:
getDTDHandler
in interfaceXMLReader
-
getEntityResolver
Return the current entity resolver.- Specified by:
getEntityResolver
in interfaceXMLReader
-
setEntityResolver
Allow an application to register an entity resolver.- Specified by:
setEntityResolver
in interfaceXMLReader
-
setDTDHandler
Allow an application to register a DTD event handler.- Specified by:
setDTDHandler
in interfaceXMLReader
-
getProperty
Look up the value of a property.- Specified by:
getProperty
in interfaceXMLReader
-
setProperty
Set the value of a property.- Specified by:
setProperty
in interfaceXMLReader
-
setFeature
Set the state of a feature.- Specified by:
setFeature
in interfaceXMLReader
-
getFeature
Look up the value of a feature.- Specified by:
getFeature
in interfaceXMLReader
-