public interface UninstallAction
All uninstall actions must implement this interface. You have to override all methods and provide a public constructor with no arguments. It is recommended that you choose one of the derived abstract classes as a super class.
Method Summary | |
---|---|
boolean |
uninstall(UninstallerContext context)
This method is called by the framework to perform the action during uninstallation. |
Methods inherited from interface com.install4j.api.actions.Action |
---|
init |
Method Detail |
---|
boolean uninstall(UninstallerContext context) throws UserCanceledException
context
- the context of the uninstallation.
UserCanceledException
- You can let
these exceptions pass through, they will be handled by the framework.