Package uk.ac.starlink.ttools.votlint
Class StreamHandler
- java.lang.Object
-
- uk.ac.starlink.ttools.votlint.ElementHandler
-
- uk.ac.starlink.ttools.votlint.StreamHandler
-
public class StreamHandler extends ElementHandler
Handler for STREAM elements.- Since:
- 8 Apr 2005
- Author:
- Mark Taylor (Starlink)
-
-
Constructor Summary
Constructors Constructor Description StreamHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] ch, int start, int leng)Called when character content is found in the element.voidendElement()Called when the element has ended.voidstartElement()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
-
-
-
-
Method Detail
-
startElement
public void startElement()
Description copied from class:ElementHandlerCalled after the attributes have been set and checked. The default implementation does nothing.- Overrides:
startElementin classElementHandler
-
characters
public void characters(char[] ch, int start, int leng)Description copied from class:ElementHandlerCalled when character content is found in the element. The default implementation does nothing.- Overrides:
charactersin classElementHandler
-
endElement
public void endElement()
Description copied from class:ElementHandlerCalled when the element has ended. The default implementation does nothing.- Overrides:
endElementin classElementHandler
-
-