diff options
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/MenuBar.java')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/MenuBar.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/main/java/com/vaadin/ui/MenuBar.java b/server/src/main/java/com/vaadin/ui/MenuBar.java index f7682408d4..544b93ea6a 100644 --- a/server/src/main/java/com/vaadin/ui/MenuBar.java +++ b/server/src/main/java/com/vaadin/ui/MenuBar.java @@ -200,7 +200,7 @@ public class MenuBar extends AbstractComponent } /** - * Constructs an empty, horizontal menu + * Constructs an empty, horizontal menu. */ public MenuBar() { menuItems = new ArrayList<>(); @@ -282,7 +282,7 @@ public class MenuBar extends AbstractComponent } /** - * Returns a list with all the MenuItem objects in the menu bar + * Returns a list with all the MenuItem objects in the menu bar. * * @return a list containing the MenuItem objects in the menu bar */ @@ -291,7 +291,7 @@ public class MenuBar extends AbstractComponent } /** - * Remove first occurrence the specified item from the main menu + * Remove first occurrence the specified item from the main menu. * * @param item * The item to be removed @@ -304,7 +304,7 @@ public class MenuBar extends AbstractComponent } /** - * Empty the menu bar + * Empty the menu bar. */ public void removeItems() { menuItems.clear(); @@ -645,7 +645,7 @@ public class MenuBar extends AbstractComponent } /** - * Gets the objects text + * Gets the objects text. * * @return The text */ |