/***************************************************************************** * 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_DesignModel.GCM; import org.eclipse.emf.ecore.EObject; import org.eclipse.uml2.uml.Behavior; import org.eclipse.uml2.uml.Property; /** * * A representation of the model object 'Data Pool'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getDataPool() * @model * @generated */ public interface DataPool extends EObject { /** * Returns the value of the 'Ordering' attribute. * The default value is "FIFO". * The literals are from the enumeration {@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPoolOrderingKind}. * *

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

* * @return the value of the 'Ordering' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPoolOrderingKind * @see #setOrdering(DataPoolOrderingKind) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getDataPool_Ordering() * @model default="FIFO" unique="false" required="true" ordered="false" * @generated */ DataPoolOrderingKind getOrdering(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPool#getOrdering Ordering}' attribute. * * * @param value the new value of the 'Ordering' attribute. * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPoolOrderingKind * @see #getOrdering() * @generated */ void setOrdering(DataPoolOrderingKind value); /** * Returns the value of the 'Base Property' reference. * *

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

* * @return the value of the 'Base Property' reference. * @see #setBase_Property(Property) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getDataPool_Base_Property() * @model required="true" ordered="false" * @generated */ Property getBase_Property(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPool#getBase_Property Base Property}' reference. * * * @param value the new value of the 'Base Property' reference. * @see #getBase_Property() * @generated */ void setBase_Property(Property value); /** * Returns the value of the 'Insertion' reference. * *

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

* * @return the value of the 'Insertion' reference. * @see #setInsertion(Behavior) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getDataPool_Insertion() * @model ordered="false" * @generated */ Behavior getInsertion(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPool#getInsertion Insertion}' reference. * * * @param value the new value of the 'Insertion' reference. * @see #getInsertion() * @generated */ void setInsertion(Behavior value); /** * Returns the value of the 'Selection' reference. * *

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

* * @return the value of the 'Selection' reference. * @see #setSelection(Behavior) * @see org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.GCMPackage#getDataPool_Selection() * @model ordered="false" * @generated */ Behavior getSelection(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_DesignModel.GCM.DataPool#getSelection Selection}' reference. * * * @param value the new value of the 'Selection' reference. * @see #getSelection() * @generated */ void setSelection(Behavior value); } // DataPool