/** * * * * $Id$ */ package org.eclipse.papyrus.infra.constraints; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Reference Property'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getReferenceProperty() * @model * @generated */ public interface ReferenceProperty extends ConfigProperty { /** * Returns the value of the 'Value' reference. * *

* If the meaning of the 'Value' reference isn't clear, there really should be more of a description here... *

* * * @return the value of the 'Value' reference. * @see #setValue(EObject) * @see org.eclipse.papyrus.infra.constraints.ConstraintsPackage#getReferenceProperty_Value() * @model required="true" * @generated */ EObject getValue(); /** * Sets the value of the '{@link org.eclipse.papyrus.infra.constraints.ReferenceProperty#getValue Value}' reference. * * * * @param value * the new value of the 'Value' reference. * @see #getValue() * @generated */ void setValue(EObject value); } // ReferenceProperty