blob: 900e13fdaa8150b7227ee1f89d09b4b1243e2cb8 [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>Integer Distribution</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#getMin <em>Min</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#getAvg <em>Avg</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#getMax <em>Max</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getIntegerDistribution()
* @model
* @generated
*/
public interface IntegerDistribution 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(long)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getIntegerDistribution_Min()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.UnsignedInt"
* @generated
*/
long getMin();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#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(long 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(long)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getIntegerDistribution_Avg()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.UnsignedInt"
* @generated
*/
long getAvg();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#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(long 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(long)
* @see org.eclipse.app4mc.amalthea.generator.configuration.RTMGCPackage#getIntegerDistribution_Max()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.UnsignedInt"
* @generated
*/
long getMax();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.generator.configuration.IntegerDistribution#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(long value);
} // IntegerDistribution