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

org.omg.spec.bpmn.model.TStandardLoopCharacteristics Maven / Gradle / Ivy

/**
 * Copyright (C) 2023 BonitaSoft S.A.
 * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2.0 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see .
 */
package org.omg.spec.bpmn.model;

import java.math.BigInteger;

/**
 * 
 * A representation of the model object 'TStandard Loop Characteristics'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#getLoopCondition Loop Condition}
  • *
  • {@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#getLoopMaximum Loop Maximum}
  • *
  • {@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#isTestBefore Test Before}
  • *
* * @see org.omg.spec.bpmn.model.ModelPackage#getTStandardLoopCharacteristics() * @model extendedMetaData="name='tStandardLoopCharacteristics' kind='elementOnly'" * @generated */ public interface TStandardLoopCharacteristics extends TLoopCharacteristics { /** * Returns the value of the 'Loop Condition' containment reference. * * * @return the value of the 'Loop Condition' containment reference. * @see #setLoopCondition(TExpression) * @see org.omg.spec.bpmn.model.ModelPackage#getTStandardLoopCharacteristics_LoopCondition() * @model containment="true" * extendedMetaData="kind='element' name='loopCondition' namespace='##targetNamespace'" * @generated */ TExpression getLoopCondition(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#getLoopCondition Loop Condition}' containment reference. * * * @param value the new value of the 'Loop Condition' containment reference. * @see #getLoopCondition() * @generated */ void setLoopCondition(TExpression value); /** * Returns the value of the 'Loop Maximum' attribute. * * * @return the value of the 'Loop Maximum' attribute. * @see #setLoopMaximum(BigInteger) * @see org.omg.spec.bpmn.model.ModelPackage#getTStandardLoopCharacteristics_LoopMaximum() * @model dataType="org.eclipse.emf.ecore.xml.type.Integer" * extendedMetaData="kind='attribute' name='loopMaximum'" * @generated */ BigInteger getLoopMaximum(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#getLoopMaximum Loop Maximum}' attribute. * * * @param value the new value of the 'Loop Maximum' attribute. * @see #getLoopMaximum() * @generated */ void setLoopMaximum(BigInteger value); /** * Returns the value of the 'Test Before' attribute. * The default value is "false". * * * @return the value of the 'Test Before' attribute. * @see #isSetTestBefore() * @see #unsetTestBefore() * @see #setTestBefore(boolean) * @see org.omg.spec.bpmn.model.ModelPackage#getTStandardLoopCharacteristics_TestBefore() * @model default="false" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean" * extendedMetaData="kind='attribute' name='testBefore'" * @generated */ boolean isTestBefore(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#isTestBefore Test Before}' attribute. * * * @param value the new value of the 'Test Before' attribute. * @see #isSetTestBefore() * @see #unsetTestBefore() * @see #isTestBefore() * @generated */ void setTestBefore(boolean value); /** * Unsets the value of the '{@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#isTestBefore Test Before}' attribute. * * * @see #isSetTestBefore() * @see #isTestBefore() * @see #setTestBefore(boolean) * @generated */ void unsetTestBefore(); /** * Returns whether the value of the '{@link org.omg.spec.bpmn.model.TStandardLoopCharacteristics#isTestBefore Test Before}' attribute is set. * * * @return whether the value of the 'Test Before' attribute is set. * @see #unsetTestBefore() * @see #isTestBefore() * @see #setTestBefore(boolean) * @generated */ boolean isSetTestBefore(); } // TStandardLoopCharacteristics




© 2015 - 2025 Weber Informatics LLC | Privacy Policy