Uses of Interface
org.w3c.dom.Element

Packages that use Element
org.eclipse.core.expressions Application programming interfaces for the expression language. 
org.eclipse.ercp.xml.dom   
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.w3c.dom   
 

Uses of Element in org.eclipse.core.expressions
 

Methods in org.eclipse.core.expressions with parameters of type Element
 Expression ElementHandler.create(ExpressionConverter converter, Element element)
          Creates the corresponding expression for the given DOM element.
 Expression ExpressionConverter.perform(Element root)
          Converts the tree of DOM elements represented by the given root element and returns a corresponding expression tree.
protected  void ElementHandler.processChildren(ExpressionConverter converter, Element element, org.eclipse.core.internal.expressions.CompositeExpression expression)
          Converts the children of the given DOM element and adds them to the given composite expression.
 

Uses of Element in org.eclipse.ercp.xml.dom
 

Classes in org.eclipse.ercp.xml.dom that implement Element
 class ElementImpl
           
 

Methods in org.eclipse.ercp.xml.dom that return Element
 Element DocumentImpl.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 Element DocumentImpl.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Element DocumentImpl.getDocumentElement()
          This is a convenience attribute that allows direct access to the child node that is the root element of the document.
 Element DocumentImpl.getElementById(java.lang.String elementId)
          Returns the Element whose ID is given by elementId.
 Element AttrImpl.getOwnerElement()
          The Element node this attribute is attached to or null if this attribute is not in use.
 

Uses of Element in org.eclipse.ui
 

Constructors in org.eclipse.ui with parameters of type Element
XMLMemento(Document document, Element element)
          Creates a memento for the specified document and element.
 

Uses of Element in org.w3c.dom
 

Methods in org.w3c.dom that return Element
 Element Document.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 Element Document.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Element Document.getDocumentElement()
          This is a convenience attribute that allows direct access to the child node that is the root element of the document.
 Element Document.getElementById(java.lang.String elementId)
          Returns the Element whose ID is given by elementId.
 Element Attr.getOwnerElement()
          The Element node this attribute is attached to or null if this attribute is not in use.