KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > xml > soap > SOAPElement

javax.xml.soap
Interface SOAPElement

All Superinterfaces:
Element, Node, Node
All Known Subinterfaces:
Detail, DetailEntry, SOAPBody, SOAPBodyElement, SOAPEnvelope, SOAPFault, SOAPFaultElement, SOAPHeader, SOAPHeaderElement
See Also:
Top Examples, Source Code, getChildElements()

public SOAPElement addAttribute(Name name,
                                String value)
                         throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addChildElement(String localName)
                            throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addChildElement(String localName,
                                   String prefix)
                            throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addChildElement(String localName,
                                   String prefix,
                                   String uri)
                            throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addChildElement(Name name)
                            throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addChildElement(SOAPElement element)
                            throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addNamespaceDeclaration(String prefix,
                                           String uri)
                                    throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SOAPElement addTextNode(String text)
                        throws SOAPException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Iterator getAllAttributes()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getAttributeValue(Name name)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Iterator getChildElements()
See Also:
Node
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Iterator getChildElements(Name name)
See Also:
Node
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Name getElementName()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getEncodingStyle()
See Also:
setEncodingStyle(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Iterator getNamespacePrefixes()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getNamespaceURI(String prefix)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Iterator getVisibleNamespacePrefixes()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean removeAttribute(Name name)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void removeContents()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean removeNamespaceDeclaration(String prefix)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setEncodingStyle(String encodingStyle)
                      throws SOAPException
See Also:
getEncodingStyle(), IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags