Package uk.ac.starlink.ttools.votlint
Class StreamHandler
java.lang.Object
uk.ac.starlink.ttools.votlint.ElementHandler
uk.ac.starlink.ttools.votlint.StreamHandler
Handler for STREAM elements.
- Since:
- 8 Apr 2005
- Author:
- Mark Taylor (Starlink)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(char[] ch, int start, int leng) Called when character content is found in the element.void
Called when the element has ended.void
Called after the attributes have been set and checked.Methods inherited from class uk.ac.starlink.ttools.votlint.ElementHandler
configure, error, getAncestry, getAttribute, getContext, getName, getRef, info, registerChildName, setAncestry, setAttributes, toString, warning
-
Constructor Details
-
StreamHandler
public StreamHandler()
-
-
Method Details
-
startElement
public void startElement()Description copied from class:ElementHandler
Called after the attributes have been set and checked. The default implementation does nothing.- Overrides:
startElement
in classElementHandler
-
characters
public void characters(char[] ch, int start, int leng) Description copied from class:ElementHandler
Called when character content is found in the element. The default implementation does nothing.- Overrides:
characters
in classElementHandler
-
endElement
public void endElement()Description copied from class:ElementHandler
Called when the element has ended. The default implementation does nothing.- Overrides:
endElement
in classElementHandler
-