blob: da4a26a1e7d5630bd1106d714efb21b166d7aa11 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Min Avg Max Statistic</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Statistic to provide capabilities for min, max and avg
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#getMin <em>Min</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#getAvg <em>Avg</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#getMax <em>Max</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMinAvgMaxStatistic()
* @model
* @generated
*/
public interface MinAvgMaxStatistic extends NumericStatistic {
/**
* Returns the value of the '<em><b>Min</b></em>' attribute.
* The default value is <code>"0"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Min</em>' attribute.
* @see #setMin(int)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMinAvgMaxStatistic_Min()
* @model default="0" unique="false"
* @generated
*/
int getMin();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#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(int value);
/**
* Returns the value of the '<em><b>Avg</b></em>' attribute.
* The default value is <code>"0f"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Avg</em>' attribute.
* @see #setAvg(float)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMinAvgMaxStatistic_Avg()
* @model default="0f" unique="false"
* @generated
*/
float getAvg();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#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(float value);
/**
* Returns the value of the '<em><b>Max</b></em>' attribute.
* The default value is <code>"0"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Max</em>' attribute.
* @see #setMax(int)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getMinAvgMaxStatistic_Max()
* @model default="0" unique="false"
* @generated
*/
int getMax();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.MinAvgMaxStatistic#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(int value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model unique="false" diagnosticsUnique="false" contextUnique="false"
* @generated
*/
boolean validateInvariants(DiagnosticChain diagnostics, Map<Object, Object> context);
} // MinAvgMaxStatistic