// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.04.12 at 12:36:45 PM BST // package org.savara.bpmn2.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; /** * <p>Java class for tStandardLoopCharacteristics complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tStandardLoopCharacteristics", propOrder = { "loopCondition" }) public class TStandardLoopCharacteristics extends TLoopCharacteristics { protected TExpression loopCondition; @XmlAttribute protected Boolean testBefore; @XmlAttribute 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; } }