Package com.jidesoft.dialog
Interface Laziness
- All Known Implementing Classes:
AbstractDialogPage
,AbstractPage
public interface Laziness
An interface to indicate something can be initialized lazily.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
This method must be implemented by any child class.
-
Method Details
-
lazyInitialize
void lazyInitialize()This method must be implemented by any child class. Instead of putting initialization code in constructor, user should put code in this method in order to taking advantage of lazy loading.
-