java.lang.Objectcom.install4j.api.CustomAction
com.install4j.api.UninstallAction
public abstract class UninstallAction
All uninstall actions must be derived from this class. You have to implement all abstract methods and provide a public constructor with no arguments.
| Constructor Summary | |
|---|---|
UninstallAction()
|
|
| Method Summary | |
|---|---|
boolean |
performAction(Context context,
ProgressInterface progressInterface)
Override this method to perform the custom action in the uninstallation wizard. |
| Methods inherited from class com.install4j.api.CustomAction |
|---|
getPercentOfTotalInstallation |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public UninstallAction()
| Method Detail |
|---|
public boolean performAction(Context context,
ProgressInterface progressInterface)
Note: For unattended installations, the performUnattendedAction method is called instead.
context - the context of the uninstallation process.progressInterface - an interface to display progress and messages.