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

Example usage for Java com.google.gwt.user.client.ui RadioButton 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 RadioButton.

The text is from its open source code.

Subclass

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

Constructor

RadioButton(String name)
Creates a new radio associated with a particular group name.
RadioButton(String name, SafeHtml label)
Creates a new radio associated with a particular group, and initialized with the given HTML label.
RadioButton(String name, String label)
Creates a new radio associated with a particular group, and initialized with the given HTML label.
RadioButton(String name, SafeHtml label, Direction dir)
RadioButton(String name, SafeHtml label, DirectionEstimator directionEstimator)
RadioButton(String name, @IsSafeHtml String label, boolean asHTML)
Creates a new radio button associated with a particular group, and initialized with the given label (optionally treated as HTML).
RadioButton(String name, String label, Direction dir)
RadioButton(String name, String label, DirectionEstimator directionEstimator)

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()
voidsetAccessKey(char key)
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)
Change the group name of this radio button.
voidsetTabIndex(int index)
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.