
com.jidesoft.dialog.Laziness Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
/*
* @(#)Laziness.java
*
* Copyright 2002 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.dialog;
/**
* An interface to indicate something can be initialized lazily.
*/
public interface Laziness {
/**
* 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.
*/
abstract void lazyInitialize();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy