org.jbpt.pm.bpmn.IBpmnEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpt-bpm Show documentation
Show all versions of jbpt-bpm Show documentation
The jBPT code library is a compendium of technologies that support research on design, execution, and evaluation of business processes.
/**
*
*/
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