Interface InitializationPlan<T>
-
public interface InitializationPlan<T>
Performs one initialization step on a newly created object.- Since:
- 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description getDescription()
The description of the operation, used with theOperationTracker
.void
initialize(T instance)
Invoked by theConstructionPlan
inside a operation tracker block.
-
-
-
Method Detail
-
getDescription
getDescription()
The description of the operation, used with theOperationTracker
.
-
initialize
void initialize(T instance)
Invoked by theConstructionPlan
inside a operation tracker block.
-
-