Package org.apache.xmlrpc.parser
Class ByteArrayParser
- java.lang.Object
-
- org.apache.xmlrpc.parser.TypeParserImpl
-
- org.apache.xmlrpc.parser.ByteArrayParser
-
- All Implemented Interfaces:
TypeParser
,ContentHandler
- Direct Known Subclasses:
SerializableParser
public class ByteArrayParser extends TypeParserImpl
A parser for base64 elements.
-
-
Constructor Summary
Constructors Constructor Description ByteArrayParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] pChars, int pStart, int pLength)
void
endElement(String pURI, String pLocalName, String pQName)
void
startDocument()
void
startElement(String pURI, String pLocalName, String pQName, Attributes pAttrs)
-
Methods inherited from class org.apache.xmlrpc.parser.TypeParserImpl
endDocument, endPrefixMapping, getDocumentLocator, getResult, ignorableWhitespace, isEmpty, processingInstruction, setDocumentLocator, setResult, skippedEntity, startPrefixMapping
-
-
-
-
Method Detail
-
startDocument
public void startDocument() throws SAXException
- Specified by:
startDocument
in interfaceContentHandler
- Overrides:
startDocument
in classTypeParserImpl
- Throws:
SAXException
-
characters
public void characters(char[] pChars, int pStart, int pLength) throws SAXException
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classTypeParserImpl
- Throws:
SAXException
-
endElement
public void endElement(String pURI, String pLocalName, String pQName) throws SAXException
- Throws:
SAXException
-
startElement
public void startElement(String pURI, String pLocalName, String pQName, Attributes pAttrs) throws SAXException
- Throws:
SAXException
-
-