/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** */ package bpsim; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Control Parameters</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link bpsim.ControlParameters#getProbability <em>Probability</em>}</li> * <li>{@link bpsim.ControlParameters#getCondition <em>Condition</em>}</li> * <li>{@link bpsim.ControlParameters#getInterTriggerTimer <em>Inter Trigger Timer</em>}</li> * <li>{@link bpsim.ControlParameters#getTriggerCount <em>Trigger Count</em>}</li> * </ul> * </p> * * @see bpsim.BpsimPackage#getControlParameters() * @model extendedMetaData="name='ControlParameters' kind='elementOnly'" * @generated */ public interface ControlParameters extends EObject { /** * Returns the value of the '<em><b>Probability</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Probability</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Probability</em>' containment reference. * @see #setProbability(Parameter) * @see bpsim.BpsimPackage#getControlParameters_Probability() * @model containment="true" * extendedMetaData="kind='element' name='Probability' namespace='##targetNamespace'" * @generated */ Parameter getProbability(); /** * Sets the value of the '{@link bpsim.ControlParameters#getProbability <em>Probability</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Probability</em>' containment reference. * @see #getProbability() * @generated */ void setProbability(Parameter value); /** * Returns the value of the '<em><b>Condition</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Condition</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Condition</em>' containment reference. * @see #setCondition(Parameter) * @see bpsim.BpsimPackage#getControlParameters_Condition() * @model containment="true" * extendedMetaData="kind='element' name='Condition' namespace='##targetNamespace'" * @generated */ Parameter getCondition(); /** * Sets the value of the '{@link bpsim.ControlParameters#getCondition <em>Condition</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Condition</em>' containment reference. * @see #getCondition() * @generated */ void setCondition(Parameter value); /** * Returns the value of the '<em><b>Inter Trigger Timer</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Inter Trigger Timer</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Inter Trigger Timer</em>' containment reference. * @see #setInterTriggerTimer(Parameter) * @see bpsim.BpsimPackage#getControlParameters_InterTriggerTimer() * @model containment="true" * extendedMetaData="kind='element' name='InterTriggerTimer' namespace='##targetNamespace'" * @generated */ Parameter getInterTriggerTimer(); /** * Sets the value of the '{@link bpsim.ControlParameters#getInterTriggerTimer <em>Inter Trigger Timer</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Inter Trigger Timer</em>' containment reference. * @see #getInterTriggerTimer() * @generated */ void setInterTriggerTimer(Parameter value); /** * Returns the value of the '<em><b>Trigger Count</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Trigger Count</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Trigger Count</em>' containment reference. * @see #setTriggerCount(Parameter) * @see bpsim.BpsimPackage#getControlParameters_TriggerCount() * @model containment="true" * extendedMetaData="kind='element' name='TriggerCount' namespace='##targetNamespace'" * @generated */ Parameter getTriggerCount(); /** * Sets the value of the '{@link bpsim.ControlParameters#getTriggerCount <em>Trigger Count</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Trigger Count</em>' containment reference. * @see #getTriggerCount() * @generated */ void setTriggerCount(Parameter value); } // ControlParameters