--- old/modules/javafx.controls/src/main/java/javafx/scene/control/MenuItem.java 2017-03-09 14:44:24.198173672 -0800 +++ new/modules/javafx.controls/src/main/java/javafx/scene/control/MenuItem.java 2017-03-09 14:44:24.094173670 -0800 @@ -117,6 +117,7 @@ /** * Constructs a MenuItem and sets the display text with the specified text + * @param text the display text * @see #setText */ public MenuItem(String text) { @@ -126,6 +127,8 @@ /** * Constructor s MenuItem 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 * @see #setText * @see #setGraphic */ @@ -581,6 +584,7 @@ * {@inheritDoc} * @since JavaFX 8.0 */ + @Override public final ObservableSet getPseudoClassStates() { return FXCollections.emptyObservableSet(); }