blob: ab82b9ec2439d72a35473cb5bb516110bff5b8ac [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2017 Timing-Architects Embedded Systems GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.generator.configuration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Double Distribution</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getMin <em>Min</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getAvg <em>Avg</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getMax <em>Max</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getDoubleDistribution()
* @model
* @generated
*/
public interface DoubleDistribution extends Distribution {
/**
* Returns the value of the '<em><b>Min</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Min</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Min</em>' attribute.
* @see #setMin(double)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getDoubleDistribution_Min()
* @model unique="false"
* @generated
*/
double getMin();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getMin <em>Min</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Min</em>' attribute.
* @see #getMin()
* @generated
*/
void setMin(double value);
/**
* Returns the value of the '<em><b>Avg</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Avg</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Avg</em>' attribute.
* @see #setAvg(double)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getDoubleDistribution_Avg()
* @model unique="false"
* @generated
*/
double getAvg();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getAvg <em>Avg</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Avg</em>' attribute.
* @see #getAvg()
* @generated
*/
void setAvg(double value);
/**
* Returns the value of the '<em><b>Max</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Max</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Max</em>' attribute.
* @see #setMax(double)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getDoubleDistribution_Max()
* @model unique="false"
* @generated
*/
double getMax();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.DoubleDistribution#getMax <em>Max</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Max</em>' attribute.
* @see #getMax()
* @generated
*/
void setMax(double value);
} // DoubleDistribution