blob: e584caee6ea27a8a5f06a5963d9f6afe37deb0eb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* 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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Normal Distribution Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link bpsim.NormalDistributionType#getMean <em>Mean</em>}</li>
* <li>{@link bpsim.NormalDistributionType#getStandardDeviation <em>Standard Deviation</em>}</li>
* </ul>
*
* @see bpsim.BpsimPackage#getNormalDistributionType()
* @model extendedMetaData="name='NormalDistribution_._type' kind='empty'"
* @generated
*/
public interface NormalDistributionType extends DistributionParameter {
/**
* Returns the value of the '<em><b>Mean</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Mean</em>' attribute.
* @see #isSetMean()
* @see #unsetMean()
* @see #setMean(double)
* @see bpsim.BpsimPackage#getNormalDistributionType_Mean()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='mean'"
* @generated
*/
double getMean();
/**
* Sets the value of the '{@link bpsim.NormalDistributionType#getMean <em>Mean</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mean</em>' attribute.
* @see #isSetMean()
* @see #unsetMean()
* @see #getMean()
* @generated
*/
void setMean(double value);
/**
* Unsets the value of the '{@link bpsim.NormalDistributionType#getMean <em>Mean</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetMean()
* @see #getMean()
* @see #setMean(double)
* @generated
*/
void unsetMean();
/**
* Returns whether the value of the '{@link bpsim.NormalDistributionType#getMean <em>Mean</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Mean</em>' attribute is set.
* @see #unsetMean()
* @see #getMean()
* @see #setMean(double)
* @generated
*/
boolean isSetMean();
/**
* Returns the value of the '<em><b>Standard Deviation</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Standard Deviation</em>' attribute.
* @see #isSetStandardDeviation()
* @see #unsetStandardDeviation()
* @see #setStandardDeviation(double)
* @see bpsim.BpsimPackage#getNormalDistributionType_StandardDeviation()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='standardDeviation'"
* @generated
*/
double getStandardDeviation();
/**
* Sets the value of the '{@link bpsim.NormalDistributionType#getStandardDeviation <em>Standard Deviation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Standard Deviation</em>' attribute.
* @see #isSetStandardDeviation()
* @see #unsetStandardDeviation()
* @see #getStandardDeviation()
* @generated
*/
void setStandardDeviation(double value);
/**
* Unsets the value of the '{@link bpsim.NormalDistributionType#getStandardDeviation <em>Standard Deviation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetStandardDeviation()
* @see #getStandardDeviation()
* @see #setStandardDeviation(double)
* @generated
*/
void unsetStandardDeviation();
/**
* Returns whether the value of the '{@link bpsim.NormalDistributionType#getStandardDeviation <em>Standard Deviation</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Standard Deviation</em>' attribute is set.
* @see #unsetStandardDeviation()
* @see #getStandardDeviation()
* @see #setStandardDeviation(double)
* @generated
*/
boolean isSetStandardDeviation();
} // NormalDistributionType