Package com.hybris.cockpitng.core
Interface Cleanable
-
- All Known Subinterfaces:
EditorValidation
- All Known Implementing Classes:
ConfigurableFlowValidationResultsPopup,DefaultEditorValidation,DefaultRowStateCell,DefaultValidationResultsList,DefaultValidationResultsPopup,ValidatableListcell,Widgetslot
public interface CleanableInterface of an object that needs and is able to do some cleanup before application view is destroyed (i.e. before application refresh).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleanup()Cleans all references that will be no longer valid after component is detached from its parent.
-
-
-
Method Detail
-
cleanup
void cleanup()
Cleans all references that will be no longer valid after component is detached from its parent.Notice: if an object implements
Initializablealso, then it is possible thatcleanup()will be called several times without callingInitializable.initialize().
-
-