jadex.extension.envsupport.IObjectCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-extension-envsupport Show documentation
Show all versions of jadex-kernel-extension-envsupport Show documentation
The Jadex kernel extension envsupport allows for using 2D spaces in concert with components.
package jadex.extension.envsupport;
import java.util.Map;
/**
*
*/
public interface IObjectCreator
{
/**
* @throws Exception TODO
*
*/
public Object createObject(Map args) throws Exception;
}