Interface EnvironmentListener
- All Superinterfaces:
EnvironmentLoadedListener,EnvironmentUnloadedListener,java.util.EventListener
public interface EnvironmentListener
extends EnvironmentLoadedListener, EnvironmentUnloadedListenerThis listener provides callbacks for different points over the life cycle of an
IEnvironment (loaded/unloaded/cleared/initialized).Method Summary
Modifier and Type Method Description default voidcleared(Environment environment)This method was called after the environment was cleared.default voidinitialized(Environment environment)This method was called after the environment was initialized.default voidloaded(Environment environment)This method is called after the environment was loaded.default voidunloaded(Environment environment)This method is called after the environment was unloaded.
Method Details
cleared
This method was called after the environment was cleared.- Parameters:
environment- The environment that was cleared.
initialized
This method was called after the environment was initialized.- Parameters:
environment- The environment that was initialized.
loaded
Description copied from interface:EnvironmentLoadedListenerThis method is called after the environment was loaded.- Specified by:
loadedin interfaceEnvironmentLoadedListener- Parameters:
environment- The environment that was loaded.
unloaded
Description copied from interface:EnvironmentUnloadedListenerThis method is called after the environment was unloaded.- Specified by:
unloadedin interfaceEnvironmentUnloadedListener- Parameters:
environment- The environment that was loaded.
