org.openbpmn.bpmn.elements.Signal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-bpmn.metamodel Show documentation
Show all versions of open-bpmn.metamodel Show documentation
The Open BPMN Metamodel Project
package org.openbpmn.bpmn.elements;
import org.openbpmn.bpmn.BPMNModel;
import org.openbpmn.bpmn.elements.core.BPMNElement;
import org.w3c.dom.Element;
/**
* The BPMNNode is the abstract super class for most BPMN elements like Task,
* Events, Gateways...
*
* It provides a list of attributes with at least an id and a documentation.
* Other element types can extend the attribute list.
*
* A BPMNNode holds a reference to an optional bpmnShape element
*
* @author rsoika
*/
public class Signal extends BPMNElement {
protected String type = null;
/**
* Creates a new BPMN Signal element node
*
* @param node
* @param model
*/
public Signal(BPMNModel model, Element node) {
super(model, node);
}
}