Interface LandingTree

All Known Implementing Classes:
MenuLandingTree, SimpleLandingTree

public interface LandingTree
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the list of the landings extracted from the menu file
    Get the menu opening mode.
    Get the name that will be assigned to the window manager on the page open
    boolean
    returns a boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container.
    void
    setManaged(boolean managed)
    boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container.
    void
    setModeMenu(String modeMenu)
    Set the menu opening mode.
    void
    Set the name that will be assigned to the window manager on the page open
  • Method Details

    • getLanding

      Landing getLanding(String name)
      Returns the list of the landings extracted from the menu file
      Parameters:
      name - Name
      Returns:
      the list of the landings extracted from the menu file
    • getWm

      String getWm()
      Get the name that will be assigned to the window manager on the page open
      Returns:
      the name that will be assigned to the window manager on the page open. if not specified, it will be considered the Landing.getName()
    • setWm

      void setWm(String wm)
      Set the name that will be assigned to the window manager on the page open
      Parameters:
      wm - the name that will be assigned to the window manager on the page open
    • getModeMenu

      String getModeMenu()
      Get the menu opening mode.
      Returns:
      the menu opening mode. Possible values are:
      • on: the menu is visible on the page open but it will be hidden on the mouse leave
      • off: the menu is not visible on the page open but can be open on the mouse over
      • lock: the menu is visible on the page open and it will not disappear on the mouse leave
      • none: the menu is not been present on the page
    • setModeMenu

      void setModeMenu(String modeMenu)
      Set the menu opening mode.
      Parameters:
      modeMenu - Possible values are:
      • on: the menu is visible on the page open but it will be hidden on the mouse leave
      • off: the menu is not visible on the page open but can be open on the mouse over
      • lock: the menu is visible on the page open and it will not disappear on the mouse leave
      • none: the menu is not been present on the page
    • isManaged

      boolean isManaged()
      returns a boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container. if the page is managed, it is not registered in the window manager and therefore will not be accessible from the views panel
      Returns:
      true if the page will be opened inside a geocall frame; false if it is handled by an external container
    • setManaged

      void setManaged(boolean managed)
      boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container. if the page is managed, it is not registered in the window manager and therefore will not be accessible from the views panel
      Parameters:
      managed - true if the page will be opened inside a geocall frame; false if it is handled by an external container