/* * 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; import org.eclipse.emf.ecore.util.FeatureMap; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>User Distribution Data Point Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link bpsim.UserDistributionDataPointType#getParameterValueGroup <em>Parameter Value Group</em>}</li> * <li>{@link bpsim.UserDistributionDataPointType#getParameterValue <em>Parameter Value</em>}</li> * <li>{@link bpsim.UserDistributionDataPointType#getProbability <em>Probability</em>}</li> * </ul> * </p> * * @see bpsim.BpsimPackage#getUserDistributionDataPointType() * @model extendedMetaData="name='UserDistributionDataPoint_._type' kind='elementOnly'" * @generated */ public interface UserDistributionDataPointType extends EObject { /** * Returns the value of the '<em><b>Parameter Value Group</b></em>' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameter Value Group</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parameter Value Group</em>' attribute list. * @see bpsim.BpsimPackage#getUserDistributionDataPointType_ParameterValueGroup() * @model dataType="org.eclipse.emf.ecore.EFeatureMapEntry" required="true" many="false" * extendedMetaData="kind='group' name='ParameterValue:group' namespace='##targetNamespace'" * @generated */ FeatureMap getParameterValueGroup(); /** * Returns the value of the '<em><b>Parameter Value</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameter Value</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>Parameter Value</em>' containment reference. * @see #setParameterValue(ParameterValue) * @see bpsim.BpsimPackage#getUserDistributionDataPointType_ParameterValue() * @model containment="true" required="true" transient="true" volatile="true" derived="true" * extendedMetaData="kind='element' name='ParameterValue' namespace='##targetNamespace' group='ParameterValue:group'" * @generated */ ParameterValue getParameterValue(); /** * Sets the value of the '{@link bpsim.UserDistributionDataPointType#getParameterValue <em>Parameter Value</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parameter Value</em>' containment reference. * @see #getParameterValue() * @generated */ void setParameterValue(ParameterValue value); /** * Returns the value of the '<em><b>Probability</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Probability</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Probability</em>' attribute. * @see #isSetProbability() * @see #unsetProbability() * @see #setProbability(float) * @see bpsim.BpsimPackage#getUserDistributionDataPointType_Probability() * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Float" * extendedMetaData="kind='attribute' name='probability'" * @generated */ float getProbability(); /** * Sets the value of the '{@link bpsim.UserDistributionDataPointType#getProbability <em>Probability</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Probability</em>' attribute. * @see #isSetProbability() * @see #unsetProbability() * @see #getProbability() * @generated */ void setProbability(float value); /** * Unsets the value of the '{@link bpsim.UserDistributionDataPointType#getProbability <em>Probability</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isSetProbability() * @see #getProbability() * @see #setProbability(float) * @generated */ void unsetProbability(); /** * Returns whether the value of the '{@link bpsim.UserDistributionDataPointType#getProbability <em>Probability</em>}' attribute is set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return whether the value of the '<em>Probability</em>' attribute is set. * @see #unsetProbability() * @see #getProbability() * @see #setProbability(float) * @generated */ boolean isSetProbability(); } // UserDistributionDataPointType