Package page.codeberg.friedolyn.util
Interface Preparable<PreparationType>
- Type Parameters:
PreparationType- The type of the object that is passed to theprepare(Object)method.
- All Known Implementing Classes:
ContactController,ContactReplyMethodDialogController,Controller,DialogController,FirstLaunchController,MainController,SetupController,SetupEmailDialogController,SetupNtfyDialogController,SetupUnifiedPushDialogController
public interface Preparable<PreparationType>
A class that must be prepared with certain data required for correct operation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidprepare(PreparationType data) Required to be called before the object is used.
-
Method Details
-
prepare
Required to be called before the object is used.- Parameters:
data- The information that is required for correct operation.
-