/***************************************************************************** * 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.Alloc; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; import org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NfpConstraint; import org.eclipse.uml2.uml.Abstraction; /** * * A representation of the model object 'Allocate'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocate() * @model * @generated */ public interface Allocate extends EObject { /** * Returns the value of the 'Kind' attribute. * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocationKind}. * *

* 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.Alloc.AllocationKind * @see #setKind(AllocationKind) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocate_Kind() * @model unique="false" ordered="false" * @generated */ AllocationKind getKind(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.Allocate#getKind Kind}' attribute. * * * @param value the new value of the 'Kind' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocationKind * @see #getKind() * @generated */ void setKind(AllocationKind value); /** * Returns the value of the 'Nature' attribute. * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocationNature}. * *

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

* * @return the value of the 'Nature' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocationNature * @see #setNature(AllocationNature) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocate_Nature() * @model unique="false" ordered="false" * @generated */ AllocationNature getNature(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.Allocate#getNature Nature}' attribute. * * * @param value the new value of the 'Nature' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocationNature * @see #getNature() * @generated */ void setNature(AllocationNature value); /** * Returns the value of the 'Base Abstraction' reference. * *

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

* * @return the value of the 'Base Abstraction' reference. * @see #setBase_Abstraction(Abstraction) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocate_Base_Abstraction() * @model required="true" ordered="false" * @generated */ Abstraction getBase_Abstraction(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.Allocate#getBase_Abstraction Base Abstraction}' reference. * * * @param value the new value of the 'Base Abstraction' reference. * @see #getBase_Abstraction() * @generated */ void setBase_Abstraction(Abstraction value); /** * Returns the value of the 'Implied Constraint' reference list. * The list contents are of type {@link org.eclipse.papyrus.MARTE.MARTE_Foundations.NFPs.NfpConstraint}. * *

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

* * @return the value of the 'Implied Constraint' reference list. * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocate_ImpliedConstraint() * @model ordered="false" * @generated */ EList getImpliedConstraint(); } // Allocate