blob: d5cee2515bf257c0a4d829c57a1a146d7fed9e34 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Direct Measure</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.omg.smm.DirectMeasure#getOperation <em>Operation</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.omg.smm.SmmPackage#getDirectMeasure()
* @model
* @generated
*/
public interface DirectMeasure extends DimensionalMeasure {
/**
* Returns the value of the '<em><b>Operation</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Operation</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Operation</em>' reference.
* @see #setOperation(Operation)
* @see org.eclipse.modisco.omg.smm.SmmPackage#getDirectMeasure_Operation()
* @model
* @generated
*/
Operation getOperation();
/**
* Sets the value of the '{@link org.eclipse.modisco.omg.smm.DirectMeasure#getOperation <em>Operation</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Operation</em>' reference.
* @see #getOperation()
* @generated
*/
void setOperation(Operation value);
} // DirectMeasure