blob: 640ef6955d8e59aaade1f8ee795302b9e83fec47 [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.smm.quality;
import org.eclipse.modisco.omg.smm.AbstractMeasureElement;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Measurand</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.smm.quality.Measurand#getQualifiedName <em>Qualified Name</em>}</li>
* <li>{@link org.eclipse.modisco.smm.quality.Measurand#getPath <em>Path</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.smm.quality.SmmqualityPackage#getMeasurand()
* @model
* @generated
*/
public interface Measurand extends AbstractMeasureElement {
/**
* Returns the value of the '<em><b>Qualified Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Qualified Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Qualified Name</em>' attribute.
* @see #setQualifiedName(String)
* @see org.eclipse.modisco.smm.quality.SmmqualityPackage#getMeasurand_QualifiedName()
* @model
* @generated
*/
String getQualifiedName();
/**
* Sets the value of the '{@link org.eclipse.modisco.smm.quality.Measurand#getQualifiedName <em>Qualified Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Qualified Name</em>' attribute.
* @see #getQualifiedName()
* @generated
*/
void setQualifiedName(String value);
/**
* Returns the value of the '<em><b>Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Path</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Path</em>' attribute.
* @see #setPath(String)
* @see org.eclipse.modisco.smm.quality.SmmqualityPackage#getMeasurand_Path()
* @model
* @generated
*/
String getPath();
/**
* Sets the value of the '{@link org.eclipse.modisco.smm.quality.Measurand#getPath <em>Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Path</em>' attribute.
* @see #getPath()
* @generated
*/
void setPath(String value);
} // Measurand