Package com.hp.lft.sdk
Interface MenuItemBase
public interface MenuItemBase
Base interface for all MenuItem interfaces in SDK.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanexists()Indicates whether the menu item exists.intgetIndex()Returns the 0-based numeric index location of the menu item.getLabel()Returns the menu item label.getPath()Returns the path of the menu item.intThe number of items contained in the specified menu item's sub-menu.booleanIndicates whether the menu item has a sub-menu.booleanIndicates whether the menu item has a check mark displayed next to it.booleanIndicates whether the menu item is enabled.
-
Method Details
-
getPath
Returns the path of the menu item. Menu items are separated with ; character.- Returns:
- the path of the menu item.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
isChecked
Indicates whether the menu item has a check mark displayed next to it.- Returns:
- true, if the menu item has a check mark displayed next to it.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
isEnabled
Indicates whether the menu item is enabled.- Returns:
- true, if the menu item is enabled.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
exists
Indicates whether the menu item exists.- Returns:
- true, if the menu item exists.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
hasSubMenu
Indicates whether the menu item has a sub-menu.- Returns:
- true if the menu item has a sub-menu.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
getIndex
Returns the 0-based numeric index location of the menu item.- Returns:
- the 0-based numeric index location of the menu item.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
getLabel
Returns the menu item label.- Returns:
- the menu item label.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
getSubMenuCount
The number of items contained in the specified menu item's sub-menu.- Returns:
- the number of items contained in the specified menu item's sub-menu.
- Throws:
GeneralLeanFtException- if error occurs during execution
-