diff options
Diffstat (limited to 'libjava/java/awt/MenuItem.java')
-rw-r--r-- | libjava/java/awt/MenuItem.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libjava/java/awt/MenuItem.java b/libjava/java/awt/MenuItem.java index 56082d3..f40f4af1 100644 --- a/libjava/java/awt/MenuItem.java +++ b/libjava/java/awt/MenuItem.java @@ -75,13 +75,15 @@ private static final long serialVersionUID = -21757335363267194L; /** * @serial The name of the action command generated by this item. + * This is package-private to avoid an accessor method. */ -private String actionCommand; +String actionCommand; /** * @serial Indicates whether or not this menu item is enabled. + * This is package-private to avoid an accessor method. */ -private boolean enabled = true; +boolean enabled = true; /** * @serial The mask of events that are enabled for this menu item. @@ -90,8 +92,9 @@ long eventMask; /** * @serial This menu item's label + * This is package-private to avoid an accessor method. */ -private String label; +String label; /** * @serial The shortcut for this menu item, if any |