Interface Lander<T>

All Known Implementing Classes:
SimpleLander

public interface Lander<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setup(Landing landing, T t)
    It deals with building the landing and insert it in the T passed as a parameter.
  • Method Details

    • setup

      void setup(Landing landing, T t)
      It deals with building the landing and insert it in the T passed as a parameter. It use the Landing definition to set the page to open. Currently the definitions used are:
      • page: path of the page to open. If it is not defined, it must be defined into the lander.
      • posMenu: path of the position of the menu. If it is not specified, the menu will not be set.
      • modeMenu: mode of the menu. The possible values are: "off", "on", "lock".
      Instead the Landing parameters have moved to the page to be opened as value of the PARAM key.
      Parameters:
      landing - Landing to the build.
      t - typically a WindowManager instance to use to insert the constructed page. The WindowManager must be unique for the name of the Landing.