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

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

import org.jbpt.pm.IEvent;

/**
 * Interface for BPMN event class.
 * 
 * @author Cindy Fähnrich, Tobias Hoppe
 *
 */
public interface IBpmnEvent extends IEvent {

	/**
	 * Sets the event type.
	 * @param type
	 */
	public void setEventType(BpmnEventTypes.BPMN_EVENT_TYPES type);
	
	/**
	 * @return the event type
	 */
	public BpmnEventTypes.BPMN_EVENT_TYPES getEventType();
	
	/**
	 * Checks whether this is an interrupting event.
	 * @return
	 */
	public boolean isInterrupting();
	
	/**
	 * Checks whether this is an attached event.
	 * @return
	 */
	public boolean isAttached();
	
	/**
	 * Sets this event as interrupted (or not).
	 * @param interrupts
	 */
	public void setInterrupted(boolean interrupts);
	
	/**
	 * Sets this event as attached (or not).
	 * @param attached
	 */
	public void setAttached(boolean attached);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy