Name
SOAPElement
Synopsis
public interface SOAPElement extends Node { // Property Accessor Methods (by property name) public abstract Iterator getAllAttributes( ); public abstract Iterator getChildElements( ); public abstract Iterator getChildElements( Namename
); public abstract Name getElementName( ); public abstract String getEncodingStyle( ); public abstract void setEncodingStyle( StringencodingStyle
) throws SOAPException; public abstract Iterator getNamespacePrefixes( ); // Public Instance Methods public abstract SOAPElement addAttribute(Namename
, Stringvalue
) throws SOAPException; public abstract SOAPElement addChildElement(SOAPElementelement
) throws SOAPException; public abstract SOAPElement addChildElement(StringlocalName
) throws SOAPException; public abstract SOAPElement addChildElement(Namename
) throws SOAPException; public abstract SOAPElement addChildElement(StringlocalName
, Stringprefix
) throws SOAPException; public abstract SOAPElement addChildElement(StringlocalName
, Stringprefix
, Stringuri
) throws SOAPException; public abstract SOAPElement addNamespaceDeclaration(Stringprefix
, Stringuri
) throws SOAPException public abstract SOAPElement addTextNode(Stringtext
) throws SOAPException; public abstract String getAttributeValue( Namename
); public abstract String getNamespaceURI( Stringprefix
); public abstract boolean removeAttribute( Namename
); public abstract boolean removeNamespaceDeclaration(Stringprefix
); }
A SOAPElement
represents an element within a ...
Get Java Web Services in a Nutshell now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.