Annotation Interface BaseSearchContainer.Navigation

Enclosing class:
BaseSearchContainer<T extends DynO>

@Target(TYPE) @Retention(RUNTIME) @Inherited @Documented public static @interface BaseSearchContainer.Navigation
Annotation used to define the classes of the pages to open.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Class<? extends Container>
    Annotation used to set class of the page to open on edit action.
    Class<? extends Container>
    Annotation used to set class of the page to open on insert action.
    Class<? extends Container>
    Annotation used to set class of the page to open on view action.
  • Element Details

    • viewPage

      Class<? extends Container> viewPage
      Annotation used to set class of the page to open on view action.
      Returns:
      the class of the view page
      Default:
      overit.geocall.basic.ui.Container.class
    • editPage

      Class<? extends Container> editPage
      Annotation used to set class of the page to open on edit action.
      Returns:
      the class of the edit page
      Default:
      overit.geocall.basic.ui.Container.class
    • insertPage

      Class<? extends Container> insertPage
      Annotation used to set class of the page to open on insert action.
      Returns:
      the class of the insert page
      Default:
      overit.geocall.basic.ui.Container.class