Example usage for Java com.google.gwt.user.client.ui CheckBox fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
HandlerRegistration | addValueChangeHandler(ValueChangeHandler |
String | getFormValue() Returns the value property of the input element that backs this widget. |
String | getHTML() |
String | getName() |
String | getText() |
Boolean | getValue() Determines whether this check box is currently checked. |
boolean | isChecked() Determines whether this check box is currently checked. |
boolean | isEnabled() |
void | setChecked(boolean checked) Checks or unchecks this check box. |
void | setEnabled(boolean enabled) |
void | setFocus(boolean focused) |
void | setFormValue(String value) Set the value property on the input element that backs this widget. |
void | setHTML(@IsSafeHtml String html) |
void | setName(String name) |
void | setText(String text) |
void | setValue(Boolean value) Checks or unchecks the check box. |
void | setValue(Boolean value, boolean fireEvents) Checks or unchecks the check box, firing ValueChangeEvent if appropriate. |
void | setWordWrap(boolean wrap) |