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

cn.lzgabel.bpmn.generator.internal.generated.model.TActivity Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.3.2 生成的
// 请访问 https://javaee.github.io/jaxb-v2/ 
// 在重新编译源模式时, 对此文件的所有修改都将丢失。
// 生成时间: 2021.08.22 时间 07:53:54 PM CST 
//


package cn.lzgabel.bpmn.generator.internal.generated.model;

import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

tActivity complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="tActivity">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tFlowNode">
 *       <sequence>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}ioSpecification" minOccurs="0"/>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}property" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataInputAssociation" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}dataOutputAssociation" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}resourceRole" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.omg.org/spec/BPMN/20100524/MODEL}loopCharacteristics" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="isForCompensation" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="startQuantity" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" />
 *       <attribute name="completionQuantity" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" />
 *       <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tActivity", propOrder = { "ioSpecification", "property", "dataInputAssociation", "dataOutputAssociation", "resourceRole", "loopCharacteristics" }) @XmlSeeAlso({ TCallActivity.class, TSubProcess.class, TTask.class }) public abstract class TActivity extends TFlowNode { protected TInputOutputSpecification ioSpecification; protected List property; protected List dataInputAssociation; protected List dataOutputAssociation; @XmlElementRef(name = "resourceRole", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false) protected List> resourceRole; @XmlElementRef(name = "loopCharacteristics", namespace = "http://www.omg.org/spec/BPMN/20100524/MODEL", type = JAXBElement.class, required = false) protected JAXBElement loopCharacteristics; @XmlAttribute(name = "isForCompensation") protected Boolean isForCompensation; @XmlAttribute(name = "startQuantity") protected BigInteger startQuantity; @XmlAttribute(name = "completionQuantity") protected BigInteger completionQuantity; @XmlAttribute(name = "default") @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object _default; /** * 获取ioSpecification属性的值。 * * @return * possible object is * {@link TInputOutputSpecification } * */ public TInputOutputSpecification getIoSpecification() { return ioSpecification; } /** * 设置ioSpecification属性的值。 * * @param value * allowed object is * {@link TInputOutputSpecification } * */ public void setIoSpecification(TInputOutputSpecification value) { this.ioSpecification = value; } /** * Gets the value of the property 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 set method for the property property. * *

* For example, to add a new item, do as follows: *

     *    getProperty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TProperty } * * */ public List getProperty() { if (property == null) { property = new ArrayList(); } return this.property; } /** * Gets the value of the dataInputAssociation 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 set method for the dataInputAssociation property. * *

* For example, to add a new item, do as follows: *

     *    getDataInputAssociation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TDataInputAssociation } * * */ public List getDataInputAssociation() { if (dataInputAssociation == null) { dataInputAssociation = new ArrayList(); } return this.dataInputAssociation; } /** * Gets the value of the dataOutputAssociation 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 set method for the dataOutputAssociation property. * *

* For example, to add a new item, do as follows: *

     *    getDataOutputAssociation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TDataOutputAssociation } * * */ public List getDataOutputAssociation() { if (dataOutputAssociation == null) { dataOutputAssociation = new ArrayList(); } return this.dataOutputAssociation; } /** * Gets the value of the resourceRole 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 set method for the resourceRole property. * *

* For example, to add a new item, do as follows: *

     *    getResourceRole().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link THumanPerformer }{@code >} * {@link JAXBElement }{@code <}{@link TPotentialOwner }{@code >} * {@link JAXBElement }{@code <}{@link TPerformer }{@code >} * {@link JAXBElement }{@code <}{@link TResourceRole }{@code >} * * */ public List> getResourceRole() { if (resourceRole == null) { resourceRole = new ArrayList>(); } return this.resourceRole; } /** * 获取loopCharacteristics属性的值。 * * @return * possible object is * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * */ public JAXBElement getLoopCharacteristics() { return loopCharacteristics; } /** * 设置loopCharacteristics属性的值。 * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link TStandardLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TMultiInstanceLoopCharacteristics }{@code >} * {@link JAXBElement }{@code <}{@link TLoopCharacteristics }{@code >} * */ public void setLoopCharacteristics(JAXBElement value) { this.loopCharacteristics = value; } /** * 获取isForCompensation属性的值。 * * @return * possible object is * {@link Boolean } * */ public boolean isIsForCompensation() { if (isForCompensation == null) { return false; } else { return isForCompensation; } } /** * 设置isForCompensation属性的值。 * * @param value * allowed object is * {@link Boolean } * */ public void setIsForCompensation(Boolean value) { this.isForCompensation = value; } /** * 获取startQuantity属性的值。 * * @return * possible object is * {@link BigInteger } * */ public BigInteger getStartQuantity() { if (startQuantity == null) { return new BigInteger("1"); } else { return startQuantity; } } /** * 设置startQuantity属性的值。 * * @param value * allowed object is * {@link BigInteger } * */ public void setStartQuantity(BigInteger value) { this.startQuantity = value; } /** * 获取completionQuantity属性的值。 * * @return * possible object is * {@link BigInteger } * */ public BigInteger getCompletionQuantity() { if (completionQuantity == null) { return new BigInteger("1"); } else { return completionQuantity; } } /** * 设置completionQuantity属性的值。 * * @param value * allowed object is * {@link BigInteger } * */ public void setCompletionQuantity(BigInteger value) { this.completionQuantity = value; } /** * 获取default属性的值。 * * @return * possible object is * {@link Object } * */ public Object getDefault() { return _default; } /** * 设置default属性的值。 * * @param value * allowed object is * {@link Object } * */ public void setDefault(Object value) { this._default = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy