Java com.google.gwt.user.client.ui CheckBox fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.client.ui CheckBox fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.client.ui CheckBox.

The text is from its open source code.

Subclass

com.google.gwt.user.client.ui.CheckBox has subclasses.
Click this link to see all its subclasses.

Constructor

CheckBox()
Creates a check box with no label.
CheckBox(SafeHtml label)
Creates a check box with the specified text label.
CheckBox(String label)
Creates a check box with the specified text label.
CheckBox(Element elem)
CheckBox(SafeHtml label, Direction dir)
Creates a check box with the specified text label.
CheckBox(SafeHtml label, DirectionEstimator directionEstimator)
Creates a check box with the specified text label.
CheckBox(@IsSafeHtml String label, boolean asHTML)
Creates a check box with the specified text label.
CheckBox(String label, Direction dir)
Creates a check box with the specified text label.
CheckBox(String label, DirectionEstimator directionEstimator)
Creates a label with the specified text and a default direction estimator.

Method

HandlerRegistrationaddValueChangeHandler(ValueChangeHandler handler)
StringgetFormValue()
Returns the value property of the input element that backs this widget.
StringgetHTML()
StringgetName()
StringgetText()
BooleangetValue()
Determines whether this check box is currently checked.
booleanisChecked()
Determines whether this check box is currently checked.
booleanisEnabled()
voidsetChecked(boolean checked)
Checks or unchecks this check box.
voidsetEnabled(boolean enabled)
voidsetFocus(boolean focused)
voidsetFormValue(String value)
Set the value property on the input element that backs this widget.
voidsetHTML(@IsSafeHtml String html)
voidsetName(String name)
voidsetText(String text)
voidsetValue(Boolean value)
Checks or unchecks the check box.
voidsetValue(Boolean value, boolean fireEvents)
Checks or unchecks the check box, firing ValueChangeEvent if appropriate.
voidsetWordWrap(boolean wrap)