blob: f7df80f62604cfd772b8786078b4a46787aadc99 [file] [log] [blame]
/**
* Copyright (c) 2010, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Payneau (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.omg.smm;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Rescaled Measurement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.omg.smm.RescaledMeasurement#isIsBaseSupplied <em>Is Base Supplied</em>}</li>
* <li>{@link org.eclipse.modisco.omg.smm.RescaledMeasurement#getRescaleFrom <em>Rescale From</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.omg.smm.SmmPackage#getRescaledMeasurement()
* @model
* @generated
*/
public interface RescaledMeasurement extends DimensionalMeasurement {
/**
* Returns the value of the '<em><b>Is Base Supplied</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Is Base Supplied</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Is Base Supplied</em>' attribute.
* @see #setIsBaseSupplied(boolean)
* @see org.eclipse.modisco.omg.smm.SmmPackage#getRescaledMeasurement_IsBaseSupplied()
* @model required="true"
* @generated
*/
boolean isIsBaseSupplied();
/**
* Sets the value of the '{@link org.eclipse.modisco.omg.smm.RescaledMeasurement#isIsBaseSupplied <em>Is Base Supplied</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Is Base Supplied</em>' attribute.
* @see #isIsBaseSupplied()
* @generated
*/
void setIsBaseSupplied(boolean value);
/**
* Returns the value of the '<em><b>Rescale From</b></em>' reference list.
* The list contents are of type {@link org.eclipse.modisco.omg.smm.RescaleMeasurementRelationship}.
* It is bidirectional and its opposite is '{@link org.eclipse.modisco.omg.smm.RescaleMeasurementRelationship#getTo <em>To</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rescale From</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rescale From</em>' reference list.
* @see org.eclipse.modisco.omg.smm.SmmPackage#getRescaledMeasurement_RescaleFrom()
* @see org.eclipse.modisco.omg.smm.RescaleMeasurementRelationship#getTo
* @model opposite="to"
* @generated
*/
EList<RescaleMeasurementRelationship> getRescaleFrom();
} // RescaledMeasurement