Interface MenuItem


public interface MenuItem
An Oracle menu item.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a list of all submenus for the specified menu item.
    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

      String getPath() throws GeneralLeanFtException
      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

      boolean isChecked() throws GeneralLeanFtException
      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

      boolean isEnabled() throws GeneralLeanFtException
      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

      boolean isDisabled() throws GeneralLeanFtException
      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

      boolean isVisible() throws GeneralLeanFtException
      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

      boolean isShowing() throws GeneralLeanFtException
      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

      List<MenuItem> getMenuSubItems() throws GeneralLeanFtException
      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