Interface UnattendedProgressInterface

  • All Superinterfaces:
    ProgressInterface
    All Known Implementing Classes:
    DefaultUnattendedProgressInterface

    public interface UnattendedProgressInterface
    extends ProgressInterface
    The user notification interface during unattended installations. By default, no progress information is shown during unattended installations. For each installer application, you can set the "Progress interface creation" script property in order to provide your own means of displaying progress information. For example, you might want to go to full-screen mode during update installers on dedicated special-purpose computers.

    This class adds a few methods to the default ProgressInterface interface that are only relevant in unattended mode.

    See Also:
    ProgressInterface, Context.getProgressInterface()
    • Method Detail

      • setVisible

        void setVisible​(boolean visible)
        Called when the progress interface is created and destroyed. At startup, this method is called with a parameter of true, at exit it is called with a parameter of false. You should use this method for the lif-cycle of a window or similar resources.
        Parameters:
        visible - true at startup and false at exit
      • isAskForProxy

        @Deprecated
        default boolean isAskForProxy()
        Deprecated.