Package org.apache.felix.scr.impl.parser
Interface KXml2SAXHandler
-
- All Known Implementing Classes:
XmlHandler
public interface KXml2SAXHandler
Interface for a SAX like handler with kXML
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
characters(String text)
Method called when parsing textvoid
endElement(String uri, String localName)
Method called when a tag closesvoid
processingInstruction(String target, String data)
void
setColumnNumber(int columnNumber)
void
setLineNumber(int lineNumber)
void
startElement(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)
-
-