public class

Element

extends Element
java.lang.Object
   ↳ com.google.gwt.core.client.JavaScriptObject
     ↳ com.google.gwt.dom.client.Node
       ↳ com.google.gwt.dom.client.Element
         ↳ com.google.gwt.user.client.Element

Class Overview

An opaque handle to a native DOM Element. An Element cannot be created directly. Instead, use the Element type when returning a native DOM element from JSNI methods. An Element passed back into JSNI becomes the original DOM element the Element was created from, and can be accessed in JavaScript code as expected. This is typically done by calling methods in the DOM class.

Summary

[Expand]
Inherited Constants
From class com.google.gwt.dom.client.Node
Protected Constructors
Element()
Not directly instantiable.
[Expand]
Inherited Methods
From class com.google.gwt.dom.client.Element
From class com.google.gwt.dom.client.Node
From class com.google.gwt.core.client.JavaScriptObject
From class java.lang.Object

Protected Constructors

protected Element ()

Not directly instantiable. Subclasses should also define a protected no-arg constructor to prevent client code from directly instantiating the class.