Interface ActivityGroup
-
- All Superinterfaces:
BaseElement
,java.lang.Cloneable
,java.lang.Comparable
,Element
,org.eclipse.emf.ecore.EObject
,MDObject
,ModelObject
,NamedElement
,org.eclipse.emf.common.notify.Notifier
,javax.jmi.reflect.RefBaseObject
,javax.jmi.reflect.RefFeatured
,javax.jmi.reflect.RefObject
- All Known Subinterfaces:
ActivityPartition
,ConditionalNode
,ExpansionRegion
,InterruptibleActivityRegion
,LoopNode
,SequenceNode
,StructuredActivityNode
public interface ActivityGroup extends NamedElement
A representation of the model object 'Activity Group'.ActivityGroup is an abstract class for defining sets of ActivityNodes and ActivityEdges in an Activity.
The following features are supported:
- See Also:
UMLPackage.getActivityGroup()
- Model:
- abstract="true" annotation="MOF package='activities.mdfundamentalactivities'"
- Generated:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<ActivityEdge>
getContainedEdge()
Returns the value of the 'Contained Edge' reference list.java.util.Collection<ActivityNode>
getContainedNode()
Returns the value of the 'Contained Node' reference list.Activity
getInActivity()
Returns the value of the 'In Activity' container reference.java.util.Collection<ActivityGroup>
getSubgroup()
Returns the value of the 'Subgroup' reference list.ActivityGroup
getSuperGroup()
Returns the value of the 'Super Group' reference.boolean
hasContainedEdge()
boolean
hasContainedNode()
boolean
hasSubgroup()
void
setInActivity(Activity value)
Sets the value of the 'In Activity
' container reference.void
setSuperGroup(ActivityGroup value)
Sets the value of the 'Super Group
' reference.-
Methods inherited from interface com.nomagic.magicdraw.uml.BaseElement
accept, addPropertyChangeListener, atInsert, canAdd, canAdd, canAddChild, canAddInstance, canBeDeleted, canChangeParent, canDeleteChild, clone, dispose, firePropertyChange, getClassType, getHumanName, getHumanType, getObjectParent, isEditable, isParentOf, removeAllPropertyChangeListeners, removePropertyChangeListener, sGetID
-
Methods inherited from interface com.nomagic.uml2.ext.magicdraw.classes.mdkernel.Element
get_activityPartitionOfRepresents, get_commentOfAnnotatedElement, get_constraintOfConstrainedElement, get_diagramOfContext, get_directedRelationshipOfSource, get_directedRelationshipOfTarget, get_elementOfSyncElement, get_elementTaggedValue, get_elementValueOfElement, get_relationshipOfRelatedElement, getAppliedStereotype, getOwnedComment, getOwnedElement, getOwner, getSyncElement, getTaggedValue, has_activityPartitionOfRepresents, has_commentOfAnnotatedElement, has_constraintOfConstrainedElement, has_diagramOfContext, has_directedRelationshipOfSource, has_directedRelationshipOfTarget, has_elementOfSyncElement, has_elementValueOfElement, has_relationshipOfRelatedElement, hasAppliedStereotype, hasElementTaggedValue, hasOwnedComment, hasOwnedElement, hasTaggedValue, setOwner, setSyncElement
-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface com.nomagic.magicdraw.foundation.MDObject
getID, getMDExtension, getMdExtensions, setID
-
Methods inherited from interface com.nomagic.uml2.ext.magicdraw.base.ModelObject
get_representationText, getLocalID, ignoringRefGetValue, ignoringRefGetValue, isInvalid, isSet, refGetValue, refGetValue, refSetValue, refSetValue, set_representationText, setLocalID, sGetLocalID
-
Methods inherited from interface com.nomagic.uml2.ext.magicdraw.classes.mdkernel.NamedElement
get_considerIgnoreFragmentOfMessage, get_durationObservationOfEvent, get_informationFlowOfInformationSource, get_informationFlowOfInformationTarget, get_messageOfSignature, get_namespaceOfMember, get_timeObservationOfEvent, getClientDependency, getName, getNameExpression, getNamespace, getQualifiedName, getSupplierDependency, getVisibility, has_considerIgnoreFragmentOfMessage, has_durationObservationOfEvent, has_informationFlowOfInformationSource, has_informationFlowOfInformationTarget, has_messageOfSignature, has_namespaceOfMember, has_timeObservationOfEvent, hasClientDependency, hasSupplierDependency, setName, setNameExpression, setNamespace, setVisibility
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Methods inherited from interface javax.jmi.reflect.RefBaseObject
equals, hashCode, refImmediatePackage, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints
-
-
-
-
Method Detail
-
getContainedNode
java.util.Collection<ActivityNode> getContainedNode()
Returns the value of the 'Contained Node' reference list. The list contents are of typeActivityNode
. It is bidirectional and its opposite is 'In Group
'. ActivityNodes immediately contained in the ActivityGroup.- Returns:
- the value of the 'Contained Node' reference list.
- See Also:
UMLPackage.getActivityGroup_ContainedNode()
,ActivityNode.getInGroup()
- Model:
- opposite="inGroup" transient="true" volatile="true" derived="true" ordered="false"
- Generated:
-
getInActivity
@CheckForNull Activity getInActivity()
Returns the value of the 'In Activity' container reference. It is bidirectional and its opposite is 'Group
'. The Activity containing the ActivityGroup, if it is directly owned by an Activity.- Returns:
- the value of the 'In Activity' container reference.
- See Also:
setInActivity(Activity)
,UMLPackage.getActivityGroup_InActivity()
,Activity.getGroup()
- Model:
- opposite="group" transient="false" ordered="false"
- Generated:
-
setInActivity
void setInActivity(@CheckForNull Activity value)
Sets the value of the 'In Activity
' container reference.- Parameters:
value
- the new value of the 'In Activity' container reference.- See Also:
getInActivity()
- Generated:
-
getSubgroup
java.util.Collection<ActivityGroup> getSubgroup()
Returns the value of the 'Subgroup' reference list. The list contents are of typeActivityGroup
. It is bidirectional and its opposite is 'Super Group
'. Other ActivityGroups immediately contained in this ActivityGroup.- Returns:
- the value of the 'Subgroup' reference list.
- See Also:
UMLPackage.getActivityGroup_Subgroup()
,getSuperGroup()
- Model:
- opposite="superGroup" transient="true" volatile="true" derived="true" ordered="false"
- Generated:
-
getSuperGroup
@CheckForNull ActivityGroup getSuperGroup()
Returns the value of the 'Super Group' reference. It is bidirectional and its opposite is 'Subgroup
'. The ActivityGroup immediately containing this ActivityGroup, if it is directly owned by another ActivityGroup.- Returns:
- the value of the 'Super Group' reference.
- See Also:
setSuperGroup(ActivityGroup)
,UMLPackage.getActivityGroup_SuperGroup()
,getSubgroup()
- Model:
- opposite="subgroup" transient="true" volatile="true" derived="true" ordered="false"
- Generated:
-
setSuperGroup
void setSuperGroup(@CheckForNull ActivityGroup value)
Sets the value of the 'Super Group
' reference.- Parameters:
value
- the new value of the 'Super Group' reference.- See Also:
getSuperGroup()
- Generated:
-
getContainedEdge
java.util.Collection<ActivityEdge> getContainedEdge()
Returns the value of the 'Contained Edge' reference list. The list contents are of typeActivityEdge
. It is bidirectional and its opposite is 'In Group
'. ActivityEdges immediately contained in the ActivityGroup.- Returns:
- the value of the 'Contained Edge' reference list.
- See Also:
UMLPackage.getActivityGroup_ContainedEdge()
,ActivityEdge.getInGroup()
- Model:
- opposite="inGroup" transient="true" volatile="true" derived="true" ordered="false"
- Generated:
-
hasContainedNode
boolean hasContainedNode() throws javax.jmi.reflect.JmiException
- Throws:
javax.jmi.reflect.JmiException
- Generated:
-
hasSubgroup
boolean hasSubgroup() throws javax.jmi.reflect.JmiException
- Throws:
javax.jmi.reflect.JmiException
- Generated:
-
hasContainedEdge
boolean hasContainedEdge() throws javax.jmi.reflect.JmiException
- Throws:
javax.jmi.reflect.JmiException
- Generated:
-
-