--- old/modules/javafx.controls/src/main/java/javafx/scene/control/ToggleGroup.java 2017-03-09 14:44:38.386173923 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/ToggleGroup.java 2017-03-09 14:44:38.282173921 -0800 @@ -62,6 +62,7 @@ /** * The list of toggles within the ToggleGroup. + * @return the list of toggles within the ToggleGroup */ public final ObservableList getToggles() { return toggles; @@ -156,6 +157,7 @@ /** * The selected toggle. + * @return the selected toggle */ public final ReadOnlyObjectProperty selectedToggleProperty() { return selectedToggle.getReadOnlyProperty(); }