Class DesignerStartupHook

  • All Implemented Interfaces:
    LaunchHook

    public class DesignerStartupHook
    extends java.lang.Object
    implements LaunchHook
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void initI18N()  
      static void initializeFontSize()  
      static void main​(java.lang.String[] args)  
      void setup​(LaunchStep step, LaunchContext launch)
      Called during the last phase (startup step) of the bootstrap launcher.
      void startup()
      Called after setup() to start the application.
      void staticSetup()
      This setup will be called first, before setup(), but only the first time in a given JVM.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DesignerStartupHook

        public DesignerStartupHook()
    • Method Detail

      • main

        public static void main​(java.lang.String[] args)
      • initializeFontSize

        public static void initializeFontSize()
      • staticSetup

        public void staticSetup()
                         throws java.lang.Exception
        Description copied from interface: LaunchHook
        This setup will be called first, before setup(), but only the first time in a given JVM.
        Specified by:
        staticSetup in interface LaunchHook
        Throws:
        java.lang.Exception
      • setup

        public void setup​(LaunchStep step,
                          LaunchContext launch)
                   throws java.lang.Exception
        Description copied from interface: LaunchHook
        Called during the last phase (startup step) of the bootstrap launcher. Gives the launching app a chance to do long-running and/or fragile things while the loading splash screen is still up.
        Specified by:
        setup in interface LaunchHook
        Parameters:
        step - The step being displayed. Use this step to affect the message, progress, indeterminate indication, etc of the loading splash screen.
        launch - The launch context contains information gathered during the loading phase that should be relevant to the starting application.
        Throws:
        java.lang.Exception
      • startup

        public void startup()
        Description copied from interface: LaunchHook
        Called after setup() to start the application.
        Specified by:
        startup in interface LaunchHook
      • initI18N

        protected void initI18N()