--- old/modules/javafx.controls/src/main/java/javafx/scene/control/CheckMenuItem.java 2017-03-09 14:44:15.810173523 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/CheckMenuItem.java 2017-03-09 14:44:15.702173521 -0800 @@ -99,6 +99,7 @@ /** * Constructs a CheckMenuItem and sets the display text with the specified text. + * @param text the display text */ public CheckMenuItem(String text) { this(text,null); @@ -107,6 +108,8 @@ /** * Constructs a CheckMenuItem 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 CheckMenuItem(String text, Node graphic) { super(text,graphic);