Package org.omg.spec.bpmn.model
Class TExtension
- java.lang.Object
-
- org.omg.spec.bpmn.model.TExtension
-
public class TExtension extends Object
Java class for tExtension complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tExtension"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}documentation" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="definition" type="{http://www.w3.org/2001/XMLSchema}QName" /> <attribute name="mustUnderstand" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected QNamedefinitionprotected List<TDocumentation>documentationprotected BooleanmustUnderstand
-
Constructor Summary
Constructors Constructor Description TExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QNamegetDefinition()Gets the value of the definition property.List<TDocumentation>getDocumentation()Gets the value of the documentation property.booleanisMustUnderstand()Gets the value of the mustUnderstand property.voidsetDefinition(QName value)Sets the value of the definition property.voidsetMustUnderstand(Boolean value)Sets the value of the mustUnderstand property.
-
-
-
Field Detail
-
documentation
protected List<TDocumentation> documentation
-
definition
protected QName definition
-
mustUnderstand
protected Boolean mustUnderstand
-
-
Method Detail
-
getDocumentation
public List<TDocumentation> getDocumentation()
Gets the value of the documentation 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 documentation property.For example, to add a new item, do as follows:
getDocumentation().add(newItem);Objects of the following type(s) are allowed in the list
TDocumentation
-
getDefinition
public QName getDefinition()
Gets the value of the definition property.- Returns:
- possible object is
QName
-
setDefinition
public void setDefinition(QName value)
Sets the value of the definition property.- Parameters:
value- allowed object isQName
-
isMustUnderstand
public boolean isMustUnderstand()
Gets the value of the mustUnderstand property.- Returns:
- possible object is
Boolean
-
-