org.bitlet.weupnp
public class NameValueHandler extends org.xml.sax.helpers.DefaultHandler
DefaultHandler| Constructor and Description |
|---|
NameValueHandler(java.util.Map<java.lang.String,java.lang.String> nameValue)
Creates a new instance of a NameValueHandler, storing values in
the supplied map
|
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] ch,
int start,
int length)
Receive notification of character data inside an element.
|
void |
endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
Receive notification of the end of an element.
|
void |
startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes attributes)
Receive notification of the start of an element.
|
public NameValueHandler(java.util.Map<java.lang.String,java.lang.String> nameValue)
nameValue - the map to store name-value pairs inpublic void startElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName,
org.xml.sax.Attributes attributes)
throws org.xml.sax.SAXException
currentElement, so that it will be stored
as a map key when the corresponding value will be read.startElement in interface org.xml.sax.ContentHandlerstartElement in class org.xml.sax.helpers.DefaultHandleruri - The Namespace URI, or the empty string if the
element has no Namespace URI or if Namespace
processing is not being performed.localName - The local name (without prefix), or the
empty string if Namespace processing is not being
performed.qName - The qualified name (with prefix), or the
empty string if qualified names are not available.attributes - The attributes attached to the element. If
there are no attributes, it shall be an empty
Attributes object.org.xml.sax.SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)public void endElement(java.lang.String uri,
java.lang.String localName,
java.lang.String qName)
throws org.xml.sax.SAXException
endElement in interface org.xml.sax.ContentHandlerendElement in class org.xml.sax.helpers.DefaultHandleruri - The Namespace URI, or the empty string if the
element has no Namespace URI or if Namespace
processing is not being performed.localName - The local name (without prefix), or the
empty string if Namespace processing is not being
performed.qName - The qualified name (with prefix), or the
empty string if qualified names are not available.org.xml.sax.SAXException - Any SAX exception, possibly
wrapping another exception.public void characters(char[] ch,
int start,
int length)
throws org.xml.sax.SAXException
currentElement as a keycharacters in interface org.xml.sax.ContentHandlercharacters in class org.xml.sax.helpers.DefaultHandlerch - The characters.start - The start position in the character array.length - The number of characters to use from the
character array.org.xml.sax.SAXException - Any SAX exception, possibly
wrapping another exception.ContentHandler.characters(char[], int, int)Copyright © 2014. All Rights Reserved.