| de.danet.an.util.sax.StackedHandler de.danet.an.util.soap.SOAPBuilder
SOAPBuilder | public class SOAPBuilder extends StackedHandler (Code) | | Helper for building SOAP contents from SAX events.
author: Michael Lipp version: $Revision: 1.2 $ |
Constructor Summary | |
public | SOAPBuilder(SOAPElement parent) Create a new builder with all attributes initialized to the given
values. |
Method Summary | |
public void | endElement(String uri, String loc, String raw) Receive notification of the end of an element. | public void | startElement(String namespaceURI, String localName, String qName, Attributes atts) Receive notification of the beginning of an element.
Parameters: namespaceURI - The Namespace URI, or the empty string if theelement has no Namespace URI or if Namespaceprocessing is not being performed. Parameters: localName - The local name (without prefix), or theempty string if Namespace processing is not beingperformed. Parameters: qName - The qualified name (with prefix), or theempty string if qualified names are not available. Parameters: atts - The attributes attached to the element. |
SOAPBuilder | public SOAPBuilder(SOAPElement parent)(Code) | | Create a new builder with all attributes initialized to the given
values.
|
endElement | public void endElement(String uri, String loc, String raw) throws SAXException(Code) | | Receive notification of the end of an element.
Parameters: uri - the Namespace URI, or the empty string if theelement has no Namespace URI or if Namespace processing is notbeing performed. Parameters: loc - the local name (without prefix), or the empty stringif Namespace processing is not being performed. Parameters: raw - the raw XML 1.0 name (with prefix), or the emptystring if raw names are not available. throws: SAXException - not thrown. |
startElement | public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException(Code) | | Receive notification of the beginning of an element.
Parameters: namespaceURI - The Namespace URI, or the empty string if theelement has no Namespace URI or if Namespaceprocessing is not being performed. Parameters: localName - The local name (without prefix), or theempty string if Namespace processing is not beingperformed. Parameters: qName - The qualified name (with prefix), or theempty string if qualified names are not available. Parameters: atts - The attributes attached to the element. Ifthere are no attributes, it shall be an emptyAttributes object. throws: SAXException - Any SAX exception, possiblywrapping another exception. See Also: SOAPBuilder.endElement See Also: org.xml.sax.Attributes |
|
|