org.omg.spec.bpmn.model.TStandardLoopCharacteristics Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.10.05 at 10:10:30 AM UTC
//
package org.omg.spec.bpmn.model;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for tStandardLoopCharacteristics complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="tStandardLoopCharacteristics">
* <complexContent>
* <extension base="{http://www.omg.org/spec/BPMN/20100524/MODEL}tLoopCharacteristics">
* <sequence>
* <element name="loopCondition" type="{http://www.omg.org/spec/BPMN/20100524/MODEL}tExpression" minOccurs="0"/>
* </sequence>
* <attribute name="testBefore" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="loopMaximum" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <anyAttribute processContents='lax' namespace='##other'/>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tStandardLoopCharacteristics", propOrder = {
"loopCondition"
})
public class TStandardLoopCharacteristics
extends TLoopCharacteristics
{
protected TExpression loopCondition;
@XmlAttribute(name = "testBefore")
protected Boolean testBefore;
@XmlAttribute(name = "loopMaximum")
protected BigInteger loopMaximum;
/**
* Gets the value of the loopCondition property.
*
* @return
* possible object is
* {@link TExpression }
*
*/
public TExpression getLoopCondition() {
return loopCondition;
}
/**
* Sets the value of the loopCondition property.
*
* @param value
* allowed object is
* {@link TExpression }
*
*/
public void setLoopCondition(TExpression value) {
this.loopCondition = value;
}
/**
* Gets the value of the testBefore property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isTestBefore() {
if (testBefore == null) {
return false;
} else {
return testBefore;
}
}
/**
* Sets the value of the testBefore property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setTestBefore(Boolean value) {
this.testBefore = value;
}
/**
* Gets the value of the loopMaximum property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getLoopMaximum() {
return loopMaximum;
}
/**
* Sets the value of the loopMaximum property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setLoopMaximum(BigInteger value) {
this.loopMaximum = value;
}
}