blob: 7912aa228e448ff2395947067ff9df4cfe3bd971 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Estimate.java,v 1.1 2008/01/15 08:52:07 jtham Exp $
*/
package org.eclipse.epf.xml.uma;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.util.FeatureMap;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Estimate</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A specific type of Guidance that provides sizing measures, or standards for sizing the work effort associated with performing a particular piece of work and instructions for their successful use. It may be comprised of estimation considerations and estimation metrics.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.xml.uma.Estimate#getGroup2 <em>Group2</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.Estimate#getEstimationMetric <em>Estimation Metric</em>}</li>
* <li>{@link org.eclipse.epf.xml.uma.Estimate#getEstimationConsiderations <em>Estimation Considerations</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.xml.uma.UmaPackage#getEstimate()
* @model extendedMetaData="name='Estimate' kind='elementOnly'"
* @generated
*/
public interface Estimate extends Guidance {
/**
* Returns the value of the '<em><b>Group2</b></em>' attribute list.
* The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Group2</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Group2</em>' attribute list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getEstimate_Group2()
* @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
* extendedMetaData="kind='group' name='group:22'"
* @generated
*/
FeatureMap getGroup2();
/**
* Returns the value of the '<em><b>Estimation Metric</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Estimation Metric</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Estimation Metric</em>' attribute list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getEstimate_EstimationMetric()
* @model type="java.lang.String" unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='EstimationMetric' group='#group:22'"
* @generated
*/
EList getEstimationMetric();
/**
* Returns the value of the '<em><b>Estimation Considerations</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Estimation Considerations</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Estimation Considerations</em>' attribute list.
* @see org.eclipse.epf.xml.uma.UmaPackage#getEstimate_EstimationConsiderations()
* @model type="java.lang.String" unique="false" dataType="org.eclipse.emf.ecore.xml.type.String" transient="true" volatile="true" derived="true"
* extendedMetaData="kind='element' name='EstimationConsiderations' group='#group:22'"
* @generated
*/
EList getEstimationConsiderations();
} // Estimate