Package overit.geocall.platform
Interface LandingTree
- All Known Implementing Classes:
MenuLandingTree,SimpleLandingTree
public interface LandingTree
-
Method Summary
Modifier and TypeMethodDescriptiongetLanding(String name) Returns the list of the landings extracted from the menu fileGet the menu opening mode.getWm()Get the name that will be assigned to the window manager on the page openbooleanreturns a boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container.voidsetManaged(boolean managed) boolean flag that indicates if the page will be opened inside a geocall frame or is handled by an external container.voidsetModeMenu(String modeMenu) Set the menu opening mode.voidSet the name that will be assigned to the window manager on the page open
-
Method Details
-
getLanding
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
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
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:
trueif the page will be opened inside a geocall frame;falseif 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-trueif the page will be opened inside a geocall frame;falseif it is handled by an external container
-