Package org.apache.felix.scr.impl.parser
Interface KXml2SAXHandler
-
- All Known Implementing Classes:
XmlHandler
public interface KXml2SAXHandlerInterface for a SAX like handler with kXML
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcharacters(String text)Method called when parsing textvoidendElement(String uri, String localName)Method called when a tag closesvoidprocessingInstruction(String target, String data)voidsetColumnNumber(int columnNumber)voidsetLineNumber(int lineNumber)voidstartElement(String uri, String localName, KXml2SAXParser.Attributes attributes)Method called when a tag opens
-
-
-
Method Detail
-
characters
void characters(String text) throws ParseException
Method called when parsing text- Parameters:
text-- Throws:
ParseException
-
startElement
void startElement(String uri, String localName, KXml2SAXParser.Attributes attributes) throws ParseException
Method called when a tag opens- Parameters:
uri-localName-attributes-- Throws:
ParseException
-
endElement
void endElement(String uri, String localName) throws ParseException
Method called when a tag closes- Parameters:
uri-localName-- Throws:
ParseException
-
processingInstruction
void processingInstruction(String target, String data) throws Exception
- Throws:
Exception
-
setLineNumber
void setLineNumber(int lineNumber)
-
setColumnNumber
void setColumnNumber(int columnNumber)
-
-