/***************************************************************************** * 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.ecore.EObject; import org.eclipse.uml2.uml.ActivityPartition; /** * * A representation of the model object 'Allocate Activity Group'. * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocateActivityGroup() * @model * @generated */ public interface AllocateActivityGroup extends EObject { /** * Returns the value of the 'Is Unique' attribute. * The default value is "false". * *

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

* * @return the value of the 'Is Unique' attribute. * @see #setIsUnique(boolean) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocateActivityGroup_IsUnique() * @model default="false" unique="false" dataType="org.eclipse.papyrus.MARTE_Library.MARTE_PrimitivesTypes.Boolean" ordered="false" * @generated */ boolean isIsUnique(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocateActivityGroup#isIsUnique Is Unique}' attribute. * * * @param value the new value of the 'Is Unique' attribute. * @see #isIsUnique() * @generated */ void setIsUnique(boolean value); /** * Returns the value of the 'Base Activity Partition' reference. * *

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

* * @return the value of the 'Base Activity Partition' reference. * @see #setBase_ActivityPartition(ActivityPartition) * @see org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocPackage#getAllocateActivityGroup_Base_ActivityPartition() * @model required="true" ordered="false" * @generated */ ActivityPartition getBase_ActivityPartition(); /** * Sets the value of the '{@link org.eclipse.papyrus.MARTE.MARTE_Foundations.Alloc.AllocateActivityGroup#getBase_ActivityPartition Base Activity Partition}' reference. * * * @param value the new value of the 'Base Activity Partition' reference. * @see #getBase_ActivityPartition() * @generated */ void setBase_ActivityPartition(ActivityPartition value); } // AllocateActivityGroup