org.openbpmn.bpmn.elements.Association 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.BPMNElementEdge;
import org.w3c.dom.Element;
public class Association extends BPMNElementEdge {
protected BPMNProcess bpmnProcess = null;
public Association(BPMNModel model, Element node, String _type, BPMNProcess _bpmnProcess) {
super(model, node, _type);
this.bpmnProcess=_bpmnProcess;
}
/**
* Returns the BPMN Process this element belongs to.
*
* @return
*/
public BPMNProcess getProcess() {
return bpmnProcess;
}
}