Interface Style

    • Method Detail

      • setContext

        void setContext​(Context context)
        This method is called by the framework to set the Context just after the style has been constructed. This is either an InstallerContext or an UninstallerContext, depending on the whether the style is used in an installer or an uninstaller.

        When nesting other styles, this is earliest occasion that the style manager can be obtained by calling context.getWizardContext().getStyleManager().

        Parameters:
        context - the context.
      • isStandalone

        boolean isStandalone()
        Returns if the style is intended to by applied to installer applications, screens and screen groups. Only standalone styles are available in the corresponding style selectors and can be set as the default style. If this method returns false, the style can only be nested into other styles.
        Returns:
        true or false
      • activated

        void activated()
        This method is called by the framework just after a screen with this style has been activated. This call has to be delegated to nested styles by using StyleManager.activated(Style)
        See Also:
        Screen.activated()
      • deactivated

        void deactivated()
        This method is called by the framework just after a screen with this style has been deactivated. This call has to be delegated to nested styles by using StyleManager.deactivated(Style)