/******************************************************************************* * Copyright (c) 2005, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial implementation *******************************************************************************/ 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>Value</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.epf.msproject.Value#getValueID <em>Value ID</em>}</li> * <li>{@link org.eclipse.epf.msproject.Value#getParentValueID <em>Parent Value ID</em>}</li> * <li>{@link org.eclipse.epf.msproject.Value#getValue <em>Value</em>}</li> * <li>{@link org.eclipse.epf.msproject.Value#getDescription <em>Description</em>}</li> * </ul> * </p> * * @see org.eclipse.epf.msproject.MsprojectPackage#getValue() * @model extendedMetaData="name='Value_._type' kind='elementOnly'" * @generated */ public interface Value extends EObject { /** * Returns the value of the '<em><b>Value ID</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The unique ID of the outline code value across the project. * <!-- end-model-doc --> * @return the value of the '<em>Value ID</em>' attribute. * @see #setValueID(BigInteger) * @see org.eclipse.epf.msproject.MsprojectPackage#getValue_ValueID() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.Integer" * extendedMetaData="kind='element' name='ValueID' namespace='##targetNamespace'" * @generated */ BigInteger getValueID(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.Value#getValueID <em>Value ID</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value ID</em>' attribute. * @see #getValueID() * @generated */ void setValueID(BigInteger value); /** * Returns the value of the '<em><b>Parent Value ID</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The value of the parent node of the outline code. * <!-- end-model-doc --> * @return the value of the '<em>Parent Value ID</em>' attribute. * @see #setParentValueID(BigInteger) * @see org.eclipse.epf.msproject.MsprojectPackage#getValue_ParentValueID() * @model unique="false" dataType="org.eclipse.emf.ecore.xml.type.Integer" * extendedMetaData="kind='element' name='ParentValueID' namespace='##targetNamespace'" * @generated */ BigInteger getParentValueID(); /** * Sets the value of the '{@link org.eclipse.epf.msproject.Value#getParentValueID <em>Parent Value ID</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parent Value ID</em>' attribute. * @see #getParentValueID() * @generated */ void setParentValueID(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#getValue_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.Value#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 --> * A description of this value. * <!-- end-model-doc --> * @return the value of the '<em>Description</em>' attribute. * @see #setDescription(String) * @see org.eclipse.epf.msproject.MsprojectPackage#getValue_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.Value#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); } // Value