org.oddjob.arooa.life.ArooaLifeAware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arooa Show documentation
Show all versions of arooa Show documentation
A Rip Off Of Ant - A drag and drop component framework.
package org.oddjob.arooa.life;
/**
* Implementers will be informed of framework life cycle events.
*
* @author rob
*
*/
public interface ArooaLifeAware {
/**
* The configuration for the bean has been initialised.
* Constant properties and
* element properties will have been injected.
*/
public void initialised();
/**
* The configuration for the bean has been fully configured.
* Runtime properties will
* have been injected.
*/
public void configured();
/**
* The configuration for the bean is about to be destroyed. A
* bean can use this method to free resources.
*/
public void destroy();
}