blob: 58d485ca03bc784720a324224ce8f6e664828f06 [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>Uniform Distribution Type</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link bpsim.UniformDistributionType#getMax <em>Max</em>}</li>
* <li>{@link bpsim.UniformDistributionType#getMin <em>Min</em>}</li>
* </ul>
*
* @see bpsim.BpsimPackage#getUniformDistributionType()
* @model extendedMetaData="name='UniformDistribution_._type' kind='empty'"
* @generated
*/
public interface UniformDistributionType extends DistributionParameter {
/**
* Returns the value of the '<em><b>Max</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Max</em>' attribute.
* @see #isSetMax()
* @see #unsetMax()
* @see #setMax(double)
* @see bpsim.BpsimPackage#getUniformDistributionType_Max()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='max'"
* @generated
*/
double getMax();
/**
* Sets the value of the '{@link bpsim.UniformDistributionType#getMax <em>Max</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max</em>' attribute.
* @see #isSetMax()
* @see #unsetMax()
* @see #getMax()
* @generated
*/
void setMax(double value);
/**
* Unsets the value of the '{@link bpsim.UniformDistributionType#getMax <em>Max</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetMax()
* @see #getMax()
* @see #setMax(double)
* @generated
*/
void unsetMax();
/**
* Returns whether the value of the '{@link bpsim.UniformDistributionType#getMax <em>Max</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Max</em>' attribute is set.
* @see #unsetMax()
* @see #getMax()
* @see #setMax(double)
* @generated
*/
boolean isSetMax();
/**
* Returns the value of the '<em><b>Min</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Min</em>' attribute.
* @see #isSetMin()
* @see #unsetMin()
* @see #setMin(double)
* @see bpsim.BpsimPackage#getUniformDistributionType_Min()
* @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Double"
* extendedMetaData="kind='attribute' name='min'"
* @generated
*/
double getMin();
/**
* Sets the value of the '{@link bpsim.UniformDistributionType#getMin <em>Min</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min</em>' attribute.
* @see #isSetMin()
* @see #unsetMin()
* @see #getMin()
* @generated
*/
void setMin(double value);
/**
* Unsets the value of the '{@link bpsim.UniformDistributionType#getMin <em>Min</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetMin()
* @see #getMin()
* @see #setMin(double)
* @generated
*/
void unsetMin();
/**
* Returns whether the value of the '{@link bpsim.UniformDistributionType#getMin <em>Min</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Min</em>' attribute is set.
* @see #unsetMin()
* @see #getMin()
* @see #setMin(double)
* @generated
*/
boolean isSetMin();
} // UniformDistributionType