Package jadex.bpmn.model
Class MEdge
- java.lang.Object
-
- Direct Known Subclasses:
MDataEdge
,MMessagingEdge
,MSequenceEdge
public class MEdge extends MAssociationTarget
-
-
Field Summary
Fields Modifier and Type Field Description protected MActivity
source
The edge source.protected MActivity
target
The edge target.-
Fields inherited from class jadex.bpmn.model.MAssociationTarget
associations, associationsdescription
-
Fields inherited from class jadex.bpmn.model.MNamedIdElement
description, name
-
Fields inherited from class jadex.bpmn.model.MAnnotationElement
annotations
-
Fields inherited from class jadex.bpmn.model.MIdElement
id, ID_GENERATOR
-
-
Constructor Summary
Constructors Constructor Description MEdge()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MActivity
getSource()
Get the source.MActivity
getTarget()
Get the target.void
setSource(MActivity source)
Set the source.void
setTarget(MActivity target)
Set the target.-
Methods inherited from class jadex.bpmn.model.MAssociationTarget
addAssociation, getAssociations, getAssociationsDescription, removeAssociation, setAssociationsDescription
-
Methods inherited from class jadex.bpmn.model.MNamedIdElement
getDescription, getName, setDescription, setName
-
Methods inherited from class jadex.bpmn.model.MAnnotationElement
addAnnotation, getAnnotations
-
Methods inherited from class jadex.bpmn.model.MIdElement
equals, getId, hashCode, setId
-
-
-
-
Method Detail
-
getSource
public MActivity getSource()
Get the source.- Returns:
- The source.
-
setSource
public void setSource(MActivity source)
Set the source.
-
getTarget
public MActivity getTarget()
Get the target.- Returns:
- The target.
-
setTarget
public void setTarget(MActivity target)
Set the target.- Parameters:
target
- The target.
-
-