/** * * * * $Id$ */ package org.eclipse.papyrus.papyrusgmfgenextension; import org.eclipse.emf.common.util.EList; import org.eclipse.gmf.codegen.gmfgen.GenConstraint; import org.eclipse.gmf.codegen.gmfgen.GenNode; /** * * A representation of the model object 'Gen Node Constraint'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.papyrusgmfgenextension.PapyrusgmfgenextensionPackage#getGenNodeConstraint() * @model * @generated */ public interface GenNodeConstraint extends CommentedElement { /** * Returns the value of the 'Gen Node' reference list. * The list contents are of type {@link org.eclipse.gmf.codegen.gmfgen.GenNode}. * *

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

* * * @return the value of the 'Gen Node' reference list. * @see org.eclipse.papyrus.papyrusgmfgenextension.PapyrusgmfgenextensionPackage#getGenNodeConstraint_GenNode() * @model * @generated */ EList getGenNode(); /** * Returns the value of the 'Gen Constraint' reference. * *

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

* * * @return the value of the 'Gen Constraint' reference. * @see #setGenConstraint(GenConstraint) * @see org.eclipse.papyrus.papyrusgmfgenextension.PapyrusgmfgenextensionPackage#getGenNodeConstraint_GenConstraint() * @model * @generated */ GenConstraint getGenConstraint(); /** * Sets the value of the '{@link org.eclipse.papyrus.papyrusgmfgenextension.GenNodeConstraint#getGenConstraint Gen Constraint}' reference. * * * * @param value * the new value of the 'Gen Constraint' reference. * @see #getGenConstraint() * @generated */ void setGenConstraint(GenConstraint value); } // GenNodeConstraint