Package com.hp.lft.sdk.oracle
Interface MenuItem
public interface MenuItem
An Oracle menu item.
-
Method Summary
Modifier and TypeMethodDescriptionReturns a list of all submenus for the specified menu item.getPath()
Returns the path of the menu item.boolean
Indicates whether this menu item is currently checked.boolean
Indicates whether this menu item is currently disabled.boolean
Indicates whether this menu item is currently enabled.boolean
Indicates whether this menu item is currently showing.boolean
Indicates whether this menu item is currently visible.
-
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 this menu item is currently checked.- Returns:
- true, if this menu item is currently checked.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isEnabled
Indicates whether this menu item is currently enabled.- Returns:
- true, if this menu item is currently enabled.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isDisabled
Indicates whether this menu item is currently disabled.- Returns:
- true, if this menu item is currently disabled.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isVisible
Indicates whether this menu item is currently visible.- Returns:
- true if this menu item is currently visible.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
isShowing
Indicates whether this menu item is currently showing.- Returns:
- true if this menu item is currently showing.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getMenuSubItems
Returns 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
-