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( Name name); 
    public abstract Name getElementName(  ); 
    public abstract String getEncodingStyle(  ); 
    public abstract void setEncodingStyle(
    String encodingStyle) throws SOAPException; 
    public abstract Iterator getNamespacePrefixes(  ); 
// Public Instance Methods
    public abstract SOAPElement addAttribute(Name name, String value) 
        throws SOAPException; 
    public abstract SOAPElement addChildElement(SOAPElement element) throws SOAPException; 
    public abstract SOAPElement addChildElement(String localName) 
        throws SOAPException; 
    public abstract SOAPElement addChildElement(Name name) 
        throws SOAPException; 
    public abstract SOAPElement addChildElement(String localName, 
        String prefix) throws SOAPException; 
    public abstract SOAPElement addChildElement(String localName, String prefix, 
        String uri) throws SOAPException; 
    public abstract SOAPElement addNamespaceDeclaration(String prefix, 
        String uri) throws SOAPException 
    public abstract SOAPElement addTextNode(String text) throws SOAPException; 
    public abstract String getAttributeValue( Name name); 
    public abstract String getNamespaceURI( String prefix); 
    public abstract boolean removeAttribute( Name name); 
    public abstract boolean removeNamespaceDeclaration(String prefix); 
}

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.