--- old/modules/javafx.controls/src/main/java/javafx/scene/control/RadioMenuItem.java 2017-03-09 14:44:26.766173717 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/RadioMenuItem.java 2017-03-09 14:44:26.630173715 -0800 @@ -87,7 +87,6 @@ * selected at any one time, and should * the selection change, the ToggleGroup will take care of deselecting the * previous item. - * * @see MenuItem * @see Menu @@ -110,6 +109,7 @@ /** * Constructs a RadioMenuItem and sets the display text with the specified text. + * @param text the display text */ public RadioMenuItem(String text) { this(text,null); @@ -118,6 +118,8 @@ /** * Constructs a RadioMenuItem and sets the display text with the specified text * and sets the graphic {@link Node} to the given node. + * @param text the display text + * @param graphic the graphic node */ public RadioMenuItem(String text, Node graphic) { super(text,graphic);