Example usage for Java javafx.scene.control RadioButton fields, constructors, methods, implement or subclass
The text is from its open source code.
RadioButton(String text) Creates a radio button with the specified text as its label. | |
RadioButton() Creates a radio button with an empty string for its label. |
String | getId() The id of this Node . |
String | getText() |
boolean | isSelected() |
BooleanProperty | selectedProperty() |
void | setDisable(boolean value) |
void | setId(String value) |
void | setLayoutX(double value) |
void | setLayoutY(double value) |
void | setOnAction(EventHandler |
void | setPrefSize(double prefWidth, double prefHeight) Convenience method for overriding the region's computed preferred width and height. |
void | setSelected(boolean value) |
void | setText(String value) |
void | setToggleGroup(ToggleGroup value) |
void | setTooltip(Tooltip value) |
void | setUserData(Object value) Convenience method for setting a single Object property that can be retrieved at a later date. |