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 MActivitysourceThe edge source.protected MActivitytargetThe 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 MActivitygetSource()Get the source.MActivitygetTarget()Get the target.voidsetSource(MActivity source)Set the source.voidsetTarget(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.
-
-