Package org.omg.spec.bpmn.model
Class TLinkEventDefinition
- java.lang.Object
-
- org.omg.spec.bpmn.model.TBaseElement
-
- org.omg.spec.bpmn.model.TRootElement
-
- org.omg.spec.bpmn.model.TEventDefinition
-
- org.omg.spec.bpmn.model.TLinkEventDefinition
-
public class TLinkEventDefinition extends TEventDefinition
Java class for tLinkEventDefinition complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tLinkEventDefinition"> <complexContent> <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tEventDefinition"> <sequence> <element name="source" type="{http://www.w3.org/2001/XMLSchema}QName" maxOccurs="unbounded" minOccurs="0"/> <element name="target" type="{http://www.w3.org/2001/XMLSchema}QName" minOccurs="0"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringnameprotected List<QName>sourceprotected QNametarget-
Fields inherited from class org.omg.spec.bpmn.model.TBaseElement
documentation, extensionElements, id
-
-
Constructor Summary
Constructors Constructor Description TLinkEventDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gets the value of the name property.List<QName>getSource()Gets the value of the source property.QNamegetTarget()Gets the value of the target property.voidsetName(String value)Sets the value of the name property.voidsetTarget(QName value)Sets the value of the target property.-
Methods inherited from class org.omg.spec.bpmn.model.TBaseElement
getDocumentation, getExtensionElements, getId, getOtherAttributes, setExtensionElements, setId
-
-
-
-
Method Detail
-
getSource
public List<QName> getSource()
Gets the value of the source property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the source property.For example, to add a new item, do as follows:
getSource().add(newItem);Objects of the following type(s) are allowed in the list
QName
-
getTarget
public QName getTarget()
Gets the value of the target property.- Returns:
- possible object is
QName
-
setTarget
public void setTarget(QName value)
Sets the value of the target property.- Parameters:
value- allowed object isQName
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
-