Package com.hp.lft.sdk
Interface MenuItemBase
public interface MenuItemBase
Base interface for all MenuItem interfaces in SDK.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
exists()
Indicates whether the menu item exists.int
getIndex()
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.int
The number of items contained in the specified menu item's sub-menu.boolean
Indicates whether the menu item has a sub-menu.boolean
Indicates whether the menu item has a check mark displayed next to it.boolean
Indicates 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
-