blob: abd9139876264ee60ef32c7270203ff5ab1571f2 [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id: Value2.java,v 1.2 2006/04/11 15:29:55 jthario Exp $
*/
package org.eclipse.epf.msproject;
import java.math.BigInteger;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Value2</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.epf.msproject.Value2#getID <em>ID</em>}</li>
* <li>{@link org.eclipse.epf.msproject.Value2#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.epf.msproject.Value2#getDescription <em>Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.epf.msproject.MsprojectPackage#getValue2()
* @model extendedMetaData="name='Value_._1_._type' kind='elementOnly'"
* @generated
*/
public interface Value2 extends EObject {
/**
* Returns the value of the '<em><b>ID</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Unique ID of value across
* the project.
* <!-- end-model-doc -->
* @return the value of the '<em>ID</em>' attribute.
* @see #setID(BigInteger)
* @see org.eclipse.epf.msproject.MsprojectPackage#getValue2_ID()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.Integer" required="true"
* extendedMetaData="kind='element' name='ID' namespace='##targetNamespace'"
* @generated
*/
BigInteger getID();
/**
* Sets the value of the '{@link org.eclipse.epf.msproject.Value2#getID <em>ID</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>ID</em>' attribute.
* @see #getID()
* @generated
*/
void setID(BigInteger value);
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The actual value.
* <!-- end-model-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(String)
* @see org.eclipse.epf.msproject.MsprojectPackage#getValue2_Value()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='Value' namespace='##targetNamespace'"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.epf.msproject.Value2#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The description of the value
* in the list.
* <!-- end-model-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @see org.eclipse.epf.msproject.MsprojectPackage#getValue2_Description()
* @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.String"
* extendedMetaData="kind='element' name='Description' namespace='##targetNamespace'"
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.epf.msproject.Value2#getDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
} // Value2