Package com.hybris.cockpitng.core
Interface Initializable
-
- All Known Implementing Classes:
ConfigurableFlowValidationResultsPopup,DefaultRowStateCell,DefaultValidationResultsList,DefaultValidationResultsPopup,ValidatableListcell,Widgetslot
public interface InitializableInterface of an object that needs and is able to do some initialize before application view is built.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitialize()Initializes all references that may be needed during its lifetime.
-
-
-
Method Detail
-
initialize
void initialize()
Initializes all references that may be needed during its lifetime. Method is called right before a component is attached and displayed.Notice: if an object implements
Cleanablealso, then it is possible thatinitialize()will be called several times without callingCleanable.cleanup().
-
-