Java com.google.gwt.dom.client InputElement fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.dom.client InputElement fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.dom.client InputElement.

The text is from its open source code.

Implementation

com.google.gwt.dom.client.InputElement has the following implementations.
Click this link to see all its implementation.

Field

StringTAG

Method

InputElementas(Element elem)
Assert that the given Element is compatible with this class and automatically typecast it.
Tcast()
voidfocus()
StringgetAccessKey()
A single character access key to give access to the form control.
StringgetAttribute(String name)
StringgetDefaultValue()
When the type attribute of the element has the value "text", "file" or "password", this represents the HTML value attribute of the element.
StringgetId()
intgetMaxLength()
Maximum number of characters for text fields, when type has the value "text" or "password".
StringgetName()
Form control or object name when submitted with a form.
intgetOffsetHeight()
intgetOffsetWidth()
intgetSize()
Size information.
StylegetStyle()
StringgetType()
The type of control created (all lower case).
StringgetValue()
When the type attribute of the element has the value "text", "file" or "password", this represents the current contents of the corresponding form control, in an interactive user agent.
booleanhasAttribute(String name)
booleanis(Element elem)
Determine whether the given Element can be cast to this class.
booleanis(JavaScriptObject o)
Determines whether the given JavaScriptObject can be cast to this class.
booleanis(Node node)
Determine whether the given Node can be cast to this class.
booleanisChecked()
When the type attribute of the element has the value "radio" or "checkbox", this represents the current state of the form control, in an interactive user agent.
booleanisDisabled()
The control is unavailable in this context.
booleanisReadOnly()
This control is read-only.
voidremoveAttribute(String name)
voidselect()
voidsetAccept(String accept)
A comma-separated list of content types that a server processing this form will handle correctly.
voidsetAccessKey(String accessKey)
A single character access key to give access to the form control.
voidsetAttribute(String name, String value)
voidsetChecked(boolean checked)
When the type attribute of the element has the value "radio" or "checkbox", this represents the current state of the form control, in an interactive user agent.
voidsetDefaultValue(String defaultValue)
When the type attribute of the element has the value "text", "file" or "password", this represents the HTML value attribute of the element.
voidsetDisabled(boolean disabled)
The control is unavailable in this context.
voidsetId(String id)
voidsetMaxLength(int maxLength)
Maximum number of characters for text fields, when type has the value "text" or "password".
voidsetName(String name)
Form control or object name when submitted with a form.
voidsetPropertyString(String name, String value)
voidsetReadOnly(boolean readOnly)
This control is read-only.
voidsetSize(int size)
Size information.
voidsetValue(String value)
When the type attribute of the element has the value "text", "file" or "password", this represents the current contents of the corresponding form control, in an interactive user agent.