/***************************************************************************** * Copyright (c) 2010 CEA LIST. * * * 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: * Chokri MRAIDHA (CEA LIST) chokri.mraidha@cea.fr - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.papyrus.MARTE.MARTE_Foundations.CoreElements.Mode; import org.eclipse.uml2.uml.Constraint; /** * * A representation of the model object 'Nfp Constraint'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NFPsPackage#getNfpConstraint() * @model * @generated */ public interface NfpConstraint extends EObject { /** * Returns the value of the 'Kind' attribute. * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.ConstraintKind}. * *

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

* * * @return the value of the 'Kind' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.ConstraintKind * @see #setKind(ConstraintKind) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NFPsPackage#getNfpConstraint_Kind() * @model unique="false" ordered="false" * @generated */ ConstraintKind getKind(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NfpConstraint#getKind Kind}' attribute. * * * * @param value * the new value of the 'Kind' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.ConstraintKind * @see #getKind() * @generated */ void setKind(ConstraintKind value); /** * Returns the value of the 'Base Constraint' reference. * *

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

* * * @return the value of the 'Base Constraint' reference. * @see #setBase_Constraint(Constraint) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NFPsPackage#getNfpConstraint_Base_Constraint() * @model required="true" ordered="false" * @generated */ Constraint getBase_Constraint(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NfpConstraint#getBase_Constraint Base Constraint}' reference. * * * * @param value * the new value of the 'Base Constraint' reference. * @see #getBase_Constraint() * @generated */ void setBase_Constraint(Constraint value); /** * Returns the value of the 'Mode' reference list. * The list contents are of type {@link org.eclipse.papyrus.MARTE.MARTE_Foundations.CoreElements.Mode}. * *

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

* * * @return the value of the 'Mode' reference list. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NFPsPackage#getNfpConstraint_Mode() * @model ordered="false" * @generated */ EList getMode(); } // NfpConstraint