blob: 5dc636df4a5d2b5bf84ed6456f9f392d22fa2faa [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2019 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 org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Percentage Metric Measurement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.PercentageMetricMeasurement#getMetric <em>Metric</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PercentageMetricMeasurement#getValues <em>Values</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PercentageMetricMeasurement#getStats <em>Stats</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPercentageMetricMeasurement()
* @model
* @generated
*/
public interface PercentageMetricMeasurement extends MetricMeasurement {
/**
* Returns the value of the '<em><b>Metric</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.PercentageMetric}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Metric</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.PercentageMetric
* @see #setMetric(PercentageMetric)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPercentageMetricMeasurement_Metric()
* @model unique="false"
* @generated
*/
PercentageMetric getMetric();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PercentageMetricMeasurement#getMetric <em>Metric</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Metric</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.PercentageMetric
* @see #getMetric()
* @generated
*/
void setMetric(PercentageMetric value);
/**
* Returns the value of the '<em><b>Values</b></em>' attribute list.
* The list contents are of type {@link java.lang.Double}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Values</em>' attribute list.
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPercentageMetricMeasurement_Values()
* @model unique="false"
* @generated
*/
EList<Double> getValues();
/**
* Returns the value of the '<em><b>Stats</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Stats</em>' containment reference.
* @see #setStats(IContinuousValueDeviation)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPercentageMetricMeasurement_Stats()
* @model containment="true"
* @generated
*/
IContinuousValueDeviation getStats();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PercentageMetricMeasurement#getStats <em>Stats</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Stats</em>' containment reference.
* @see #getStats()
* @generated
*/
void setStats(IContinuousValueDeviation value);
} // PercentageMetricMeasurement