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

org.jbpt.pm.Event 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;

/**
 * Base class for all model elements in a {@link IProcessModel} representing an event.
 * 
 * @author Tobias Hoppe
 *
 */
public class Event extends FlowNode {
	
	/**
	 * Creates a new {@link Event} with an empty name.
	 */
	public Event (){
		super();
	}
	
	/**
	 * Creates a new {@link Event} with the given name.
	 * @param name of this {@link Event}
	 */
	public Event (String name){
		super(name);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy