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

org.openbpmn.bpmn.elements.Signal Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy