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

org.jbpt.pm.bpmn.Task Maven / Gradle / Ivy

Go to download

The jBPT code library is a compendium of technologies that support research on design, execution, and evaluation of business processes.

There is a newer version: 0.3.1
Show newest version
/**
 * 
 */
package org.jbpt.pm.bpmn;

/**
 * This is a simple BPMN Task.
 * 
 * @author Cindy Fähnrich
 *
 */
public class Task extends BpmnActivity implements ITask{

	/**
	 * Constructor
	 */
	public Task() {
		super();
	}

	/**
	 * @param name the name/title of this task
	 * @param desc the description to this task
	 */
	public Task(String name, String desc) {
		super(name, desc);
	}

	/**
	 * @param name the name/title of this task
	 */
	public Task(String name) {
		super(name);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy