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

jadex.bpmn.runtime.persist.BpmnPersistInfo Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.0.267
Show newest version
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;
//	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy