com.vaadin.ui.
Class MenuBar.MenuItem
java.lang.Object
com.vaadin.ui.MenuBar.MenuItem
All Implemented Interfaces:
Enclosing class:
- extends Object
- implements Serializable
public class MenuBar.MenuItem
A composite class for menu items and sub-menus. You can set commands to
be fired on user click by implementing the
MenuBar.Command
interface. You can also add
multiple MenuItems to a MenuItem and create a sub-menu.
See Also:
Constructor Summary | |
---|---|
MenuBar.MenuItem(String caption,
Resource icon,
MenuBar.Command command)
Constructs a new menu item that can optionally have an icon and a command associated with it. |
Method Summary | |
---|---|
MenuBar.MenuItem |
addItem(String caption,
MenuBar.Command command)
Add a new item inside this item, thus creating a sub-menu. |
MenuBar.MenuItem |
addItem(String caption,
Resource icon,
MenuBar.Command command)
Add a new item inside this item, thus creating a sub-menu. |
MenuBar.MenuItem |
addItemBefore(String caption,
Resource icon,
MenuBar.Command command,
MenuBar.MenuItem itemToAddBefore)
Add an item before some item. |
MenuBar.MenuItem |
addSeparator()
Adds a separator to this menu. |
MenuBar.MenuItem |
addSeparatorBefore(MenuBar.MenuItem itemToAddBefore)
|
List<MenuBar.MenuItem> |
getChildren()
This will return the children of this item or null if there are none. |
MenuBar.Command |
getCommand()
For the associated command. |
String |
getDescription()
Gets the items's description. |
Resource |
getIcon()
Gets the objects icon. |
int |
getId()
Get the unique identifier for this item. |
MenuBar.MenuItem |
getParent()
For the containing item. |
int |
getSize()
Returns the number of children. |
String |
getStyleName()
|
String |
getText()
Gets the objects text |
boolean |
hasChildren()
Checks if the item has children (if it is a sub-menu). |
boolean |
isCheckable()
Gets the checkable state of the item - whether the item has checked and unchecked states. |
boolean |
isChecked()
Gets the checked state of the item (checked or unchecked). |
boolean |
isEnabled()
|
boolean |
isSeparator()
|
boolean |
isVisible()
|
void |
removeChild(MenuBar.MenuItem item)
Remove the first occurrence of the item. |
void |
removeChildren()
Empty the list of children items. |
void |
setCheckable(boolean checkable)
Sets the checkable state of the item. |
void |
setChecked(boolean checked)
Sets the checked state of the item. |
void |
setCommand(MenuBar.Command command)
Set the command for this item. |
void |
setDescription(String description)
Sets the items's description. |
void |
setEnabled(boolean enabled)
|
void |
setIcon(Resource icon)
Sets the icon. |
protected void |
setParent(MenuBar.MenuItem parent)
Set the parent of this item. |
void |
setStyleName(String styleName)
|
void |
setText(String text)
Set the text of this object. |
void |
setVisible(boolean visible)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
MenuBar.MenuItem
public MenuBar.MenuItem(String caption,
Resource icon,
MenuBar.Command command)
- Parameters:
text
- The text associated with the commandcommand
- The command to be fired- Throws:
IllegalArgumentException
Constructs a new menu item that can optionally have an icon and a command associated with it. Icon and command can be null, but a caption must be given.
Method Detail |
---|
hasChildren
public boolean hasChildren()
- Returns:
- True if this item has children
Checks if the item has children (if it is a sub-menu).
addSeparator
public MenuBar.MenuItem addSeparator()
- Since:
- 6.2.0
Adds a separator to this menu. A separator is a way to visually group items in a menu, to make it easier for users to find what they are looking for in the menu.
addSeparatorBefore
public MenuBar.MenuItem addSeparatorBefore(MenuBar.MenuItem itemToAddBefore)
addItem
public MenuBar.MenuItem addItem(String caption,
MenuBar.Command command)
- Parameters:
caption
- the text for the menu itemcommand
- the command for the menu item
Add a new item inside this item, thus creating a sub-menu. Command can be null, but a caption must be given.
addItem
public MenuBar.MenuItem addItem(String caption,
Resource icon,
MenuBar.Command command)
throws IllegalStateException
- Parameters:
caption
- the text for the menu itemicon
- the icon for the menu itemcommand
- the command for the menu item- Throws:
IllegalStateException
- If the item is checkable and thus cannot have children.
Add a new item inside this item, thus creating a sub-menu. Icon and command can be null, but a caption must be given.
addItemBefore
public MenuBar.MenuItem addItemBefore(String caption,
Resource icon,
MenuBar.Command command,
MenuBar.MenuItem itemToAddBefore)
throws IllegalStateException
- Parameters:
caption
- the text for the menu itemicon
- the icon for the menu itemcommand
- the command for the menu itemitemToAddBefore
- the item that will be after the new item- Throws:
IllegalStateException
- If the item is checkable and thus cannot have children.
Add an item before some item. If the given item does not exist the item is added at the end of the menu. Icon and command can be null, but a caption must be given.
getCommand
public MenuBar.Command getCommand()
- Returns:
- The associated command, or null if there is none
For the associated command.
getIcon
public Resource getIcon()
- Returns:
- The icon of the item, null if the item doesn't have an icon
Gets the objects icon.
getParent
public MenuBar.MenuItem getParent()
- Returns:
- The containing
MenuBar.MenuItem
, or null if there is none
For the containing item. This will return null if the item is in the top-level menu bar.
getChildren
public List<MenuBar.MenuItem> getChildren()
- Returns:
- List of children items, or null if there are none
This will return the children of this item or null if there are none.
getText
public String getText()
- Returns:
- The text
Gets the objects text
getSize
public int getSize()
- Returns:
- The number of child items
Returns the number of children.
getId
public int getId()
- Returns:
- The id of this item
Get the unique identifier for this item.
setCommand
public void setCommand(MenuBar.Command command)
- Parameters:
command
- The MenuCommand of this item
Set the command for this item. Set null to remove.
setIcon
public void setIcon(Resource icon)
- Parameters:
icon
- The icon for this item
Sets the icon. Set null to remove.
setText
public void setText(String text)
- Parameters:
text
- Text for this object
Set the text of this object.
removeChild
public void removeChild(MenuBar.MenuItem item)
- Parameters:
item
- The item to be removed
Remove the first occurrence of the item.
removeChildren
public void removeChildren()
Empty the list of children items.
setParent
protected void setParent(MenuBar.MenuItem parent)
- Parameters:
parent
- The parent item
Set the parent of this item. This is called by the addItem method.
setEnabled
public void setEnabled(boolean enabled)
isEnabled
public boolean isEnabled()
setVisible
public void setVisible(boolean visible)
isVisible
public boolean isVisible()
isSeparator
public boolean isSeparator()
setStyleName
public void setStyleName(String styleName)
getStyleName
public String getStyleName()
setDescription
public void setDescription(String description)
- Parameters:
description
- the new description string for the component.
Sets the items's description. See getDescription()
for more
information on what the description is. This method will trigger a
RepaintRequestEvent
.
getDescription
public String getDescription()
- item1
- item2
- Returns:
- item's description
String
Gets the items's description. The description can be used to briefly describe the state of the item to the user. The description string may contain certain XML tags:
Tag | Description | Example |
<b> | bold | bold text |
<i> | italic | italic text |
<u> | underlined | underlined text |
<br> | linebreak | N/A |
<ul> <li>item1 <li>item1 </ul> |
item list |
|
These tags may be nested.
isCheckable
public boolean isCheckable()
- Returns:
- true if the item is checkable, false otherwise
- Since:
- 6.6.2
Gets the checkable state of the item - whether the item has checked
and unchecked states. If an item is checkable its checked state (as
returned by isChecked()
) is indicated in the UI.
An item is not checkable by default.
setCheckable
public void setCheckable(boolean checkable)
throws IllegalStateException
- Parameters:
checkable
- true if the item should be checkable, false otherwise- Throws:
IllegalStateException
- If the item has children- Since:
- 6.6.2
Sets the checkable state of the item. If an item is checkable its
checked state (as returned by isChecked()
) is indicated in
the UI.
An item is not checkable by default.
Items with sub items cannot be checkable.
isChecked
public boolean isChecked()
- Returns:
- true if the item is checked, false otherwise
- Since:
- 6.6.2
Gets the checked state of the item (checked or unchecked). Only used
if the item is checkable (as indicated by isCheckable()
).
The checked state is indicated in the UI with the item, if the item
is checkable.
An item is not checked by default.
The CSS style corresponding to the checked state is "-checked".
setChecked
public void setChecked(boolean checked)
- Since:
- 6.6.2
Sets the checked state of the item. Only used if the item is
checkable (indicated by isCheckable()
). The checked state is
indicated in the UI with the item, if the item is checkable.
An item is not checked by default.
The CSS style corresponding to the checked state is "-checked".