Package com.install4j.api.screens
Interface UninstallerScreen
-
- All Superinterfaces:
Bean
,Screen
,VisualContainerBean
- All Known Implementing Classes:
AbstractInstallerOrUninstallerScreen
,AbstractUninstallerScreen
public interface UninstallerScreen extends Screen
All uninstaller screens 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setUninstallerContext(UninstallerContext context)
This method is called by the framework to set theUninstallerContext
.-
Methods inherited from interface com.install4j.api.screens.Screen
activated, cancel, createComponent, deactivated, getProgressInterface, getSubTitle, getTitle, handleConsole, handleUnattended, isCancelVisible, isCreateLazily, isHidden, isHiddenForNext, isHiddenForPrevious, isNextVisible, isPreviousVisible, next, previous, willActivate
-
Methods inherited from interface com.install4j.api.beans.VisualContainerBean
getAnchor, isFillHorizontal, isFillVertical
-
-
-
-
Method Detail
-
setUninstallerContext
void setUninstallerContext(UninstallerContext context)
This method is called by the framework to set theUninstallerContext
.- Parameters:
context
- the uninstaller context.
-
-