jadex.bpmn.runtime.persist.BpmnPersistInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-kernel-bpmn Show documentation
Show all versions of jadex-kernel-bpmn Show documentation
The Jadex BPMN kernel provides a workflow kernel for the standardized business process modeling notation. The kernel relies on annotated BPMN diagrams, which include detailed execution information.
package jadex.bpmn.runtime.persist;
import jadex.bridge.IInternalAccess;
import jadex.kernelbase.DefaultPersistInfo;
/**
* Class containing persistence information about
* a Bpmn process instance.
*/
public class BpmnPersistInfo extends DefaultPersistInfo
{
//-------- attribute --------
/** The context variables. */
protected ThreadInfo topthread;
//-------- constructors --------
/**
* Create an empty persist info.
*/
public BpmnPersistInfo()
{
// bean constructors.
}
/**
* Create a new BpmnPersistInfo.
*/
public BpmnPersistInfo(IInternalAccess interpreter)
{
super(interpreter);
// topthread = new ThreadInfo(interpreter.getTopLevelThread());
}
//-------- methods --------
// /**
// * Get the top thread.
// */
// public ThreadInfo getTopLevelThread()
// {
// return topthread;
// }
//
// /**
// * Set the top thread.
// */
// public void setTopLevelThread(ThreadInfo topthread)
// {
// this.topthread = topthread;
// }
}