Package com.hp.lft.sdk.oracle
Interface MenuItem
public interface MenuItem
An Oracle menu item.
- 
Method SummaryModifier and TypeMethodDescriptionReturns a list of all submenus for the specified menu item.getPath()Returns the path of the menu item.booleanIndicates whether this menu item is currently checked.booleanIndicates whether this menu item is currently disabled.booleanIndicates whether this menu item is currently enabled.booleanIndicates whether this menu item is currently showing.booleanIndicates whether this menu item is currently visible.
- 
Method Details- 
getPathReturns 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
 
- 
isCheckedIndicates whether this menu item is currently checked.- Returns:
- true, if this menu item is currently checked.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
isEnabledIndicates whether this menu item is currently enabled.- Returns:
- true, if this menu item is currently enabled.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
isDisabledIndicates whether this menu item is currently disabled.- Returns:
- true, if this menu item is currently disabled.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
isVisibleIndicates whether this menu item is currently visible.- Returns:
- true if this menu item is currently visible.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
isShowingIndicates whether this menu item is currently showing.- Returns:
- true if this menu item is currently showing.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMenuSubItemsReturns a list of all submenus for the specified menu item.- Returns:
- The list of all submenus for the specified menu item.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-