public class Element {
public Element(String name);
public Element(String name, String uri);
public Element(String name, String prefix, String uri);
public Element(String name, Namespace ns);
public Document getDocument( );
public Element getParent( );
public Element detach( );
public String getName( );
public void setName(String name);
public Namespace getNamespace( );
public Namespace getNamespace(String prefix);
public void setNamespace(Namespace ns);
public String getNamespacePrefix( );
public String getNamespaceURI( );
public String getQualifiedName( );
public void addNamespaceDeclaration(Namespace additionalNS);
public void removeNamespaceDeclaration(Namespace additionalNS);
public List getAdditionalNamespaces( );
public List getContent( );
public Element setMixedContent(List mixedContent);
public Element addContent(CDATA cdata);
public Element addContent(Comment comment);
public Element addContent(Element element);
public Element addContent(EntityRef entityRef);
public Element addContent(ProcessingInstruction pi);
public Element addContent(String text);
public boolean removeContent(CDATA cdata);
public boolean removeContent(Comment comment);
public boolean removeContent(Element element);
public boolean removeContent(EntityRef entityRef);
public boolean removeContent(ProcessingInstruction pi);
public boolean hasChildren( );
public Element getChild(String name);
public Element getChild(String name, Namespace ns);
public List getChildren( );
public List getChildren(String name);
public List getChildren(String name, Namespace ns);
public boolean removeChild(String name);
public boolean removeChild(String name, Namespace ns);
public boolean removeChildren( );
public boolean removeChildren(String name);
public boolean removeChildren(String name, Namespace ns);
public Element setChildren(List children);
public Attribute getAttribute(String name);
public Attribute getAttribute(String name, Namespace ns);
public List getAttributes( );
public String getAttributeValue(String name);
public String getAttributeValue(String name, Namespace ns);
public boolean removeAttribute(String name);
public boolean removeAttribute(String name, Namespace ns);
public Element setAttribute(Attribute attribute);
public Element setAttributes(List attributes);
public String getChildText(String name);
public String getChildText(String name, Namespace ns);
public String getChildTextTrim(String name);
public String getChildTextTrim(String name, Namespace ns);
public String getText( );
public String getTextNormalize( );
public String getTextTrim( );
public Element setText(String text);
public boolean isRootElement( );
public Object clone( );
public boolean equals(Object obj);
public int hashCode( );
public String toString( );
}