cn.lzgabel.bpmn.generator.internal.generated.model.TAdHocSubProcess Maven / Gradle / Ivy
//
// 此文件是由 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* tAdHocSubProcess complex type的 Java 类。
*
*
以下模式片段指定包含在此类中的预期内容。
*
*
* <complexType name="tAdHocSubProcess">
* <complexContent>
* <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tSubProcess">
* <sequence>
* <element name="completionCondition" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tExpression" minOccurs="0"/>
* </sequence>
* <attribute name="cancelRemainingInstances" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* <attribute name="ordering" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tAdHocOrdering" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tAdHocSubProcess", propOrder = {
"completionCondition"
})
public class TAdHocSubProcess
extends TSubProcess
{
protected TExpression completionCondition;
@XmlAttribute(name = "cancelRemainingInstances")
protected Boolean cancelRemainingInstances;
@XmlAttribute(name = "ordering")
protected TAdHocOrdering ordering;
/**
* 获取completionCondition属性的值。
*
* @return
* possible object is
* {@link TExpression }
*
*/
public TExpression getCompletionCondition() {
return completionCondition;
}
/**
* 设置completionCondition属性的值。
*
* @param value
* allowed object is
* {@link TExpression }
*
*/
public void setCompletionCondition(TExpression value) {
this.completionCondition = value;
}
/**
* 获取cancelRemainingInstances属性的值。
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isCancelRemainingInstances() {
if (cancelRemainingInstances == null) {
return true;
} else {
return cancelRemainingInstances;
}
}
/**
* 设置cancelRemainingInstances属性的值。
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCancelRemainingInstances(Boolean value) {
this.cancelRemainingInstances = value;
}
/**
* 获取ordering属性的值。
*
* @return
* possible object is
* {@link TAdHocOrdering }
*
*/
public TAdHocOrdering getOrdering() {
return ordering;
}
/**
* 设置ordering属性的值。
*
* @param value
* allowed object is
* {@link TAdHocOrdering }
*
*/
public void setOrdering(TAdHocOrdering value) {
this.ordering = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy