Interface UIHandler<UI extends JAXXObject>


  • public interface UIHandler<UI extends JAXXObject>
    Created on 11/26/13.
    Since:
    2.6
    Author:
    Tony Chemit - dev@tchemit.fr
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void afterInit​(UI ui)
      Invoke by Jaxx java file in $initialize method after $initialize_06_finalizeInitialize method invocation.
      default void beforeInit​(UI ui)
      Invoke by Jaxx java file in $initialize method before $initialize_01_createComponents method invocation.
      default void registerActions​(UI ui)
      Invoke by Jaxx java file in $initialize method after $initialize_02_registerActions method invocation.
    • Method Detail

      • beforeInit

        default void beforeInit​(UI ui)
        Invoke by Jaxx java file in $initialize method before $initialize_01_createComponents method invocation. Note: this is the very first method invoked in $initialize method
        Parameters:
        ui - the ui
      • registerActions

        default void registerActions​(UI ui)
        Invoke by Jaxx java file in $initialize method after $initialize_02_registerActions method invocation.
        Parameters:
        ui - the ui
      • afterInit

        default void afterInit​(UI ui)
        Invoke by Jaxx java file in $initialize method after $initialize_06_finalizeInitialize method invocation. Note: this is the very last method invoked in $initialize method
        Parameters:
        ui - the ui