blob: c7d312b596784e0276c8db9266ca59f2acafb41f [file] [log] [blame]
/**
* <copyright>
* </copyright>
*
* $Id$
*/
package org.eclipse.gmf.mappings;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Feature Value Spec</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Value specification associated with a specific feature
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.gmf.mappings.FeatureValueSpec#getValue <em>Value</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.gmf.mappings.GMFMapPackage#getFeatureValueSpec()
* @model
* @generated
*/
public interface FeatureValueSpec extends FeatureInitializer {
/**
* Returns the value of the '<em><b>Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Value</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' containment reference.
* @see #setValue(ValueExpression)
* @see org.eclipse.gmf.mappings.GMFMapPackage#getFeatureValueSpec_Value()
* @model containment="true" required="true"
* annotation="http://www.eclipse.org/gmf/2005/constraints/meta def='context' ocl='featureSeqInitializer.elementClass'"
* annotation="http://www.eclipse.org/gmf/2005/constraints/meta def='type' ocl='feature'"
* @generated
*/
ValueExpression getValue();
/**
* Sets the value of the '{@link org.eclipse.gmf.mappings.FeatureValueSpec#getValue <em>Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' containment reference.
* @see #getValue()
* @generated
*/
void setValue(ValueExpression value);
} // FeatureValueSpec