public interface Initializer
An interface for use when the initialization of objects, providers, services, modules, etc. needs to be deferred, e.g. until a password has been entered.
Initialization routines
can then be triggered by calling the method onInitialize(Context,
TrimState).
| Modifier and Type | Method and Description |
|---|---|
void |
onInitialize(Context context,
TrimState trimState)
This method triggers the initialization of its implementer.
|
void onInitialize(Context context, TrimState trimState)
context - The Context-object, because it might be necessary for the initialization.trimState - The current of the app, which should be the same TrimState of all
Initializers.