Package com.zerog.ia.api.pub
Interface InstallerControl
-
- All Known Implementing Classes:
CustomCodeConsoleProxy
,CustomCodePanelProxy
,InstallerProxy
public interface InstallerControl
InstallerControl allows developers to abort the installation process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
abortInstallation(int exitCode)
This method exits the installer.
-
-
-
Method Detail
-
abortInstallation
void abortInstallation(int exitCode)
This method exits the installer.
This method never returns. Similar to calling System.exit(), except installer temporary files will be cleaned up and the installation log will be written to the user's hard drive if the installer has been set to generate a log.
- Parameters:
exitCode
- the exit code to be returned by the installation process.
-
-