All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.bdiv3.features.impl.IInternalBDILifecycleFeature Maven / Gradle / Ivy

package jadex.bdiv3.features.impl;

/**
 *  Internal interface of the bdi lifecycle feature.
 */
public interface IInternalBDILifecycleFeature
{
	/**
	 *  Get the inited.
	 *  @return The inited.
	 */
	public boolean isInited();
	
	/**
	 *  Set the inited state.
	 *  @param The inited state.
	 */
	public void setInited(boolean inited);
	
	/**
	 *  Get the shutdown.
	 *  @return The shutdown.
	 */
	public boolean isShutdown();
	
	/**
	 *  Set the shutdown state.
	 *  @param The shutdown state.
	 */
	public void setShutdown(boolean shutdown);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy