Package jadex.bpmn.model
Class MMessagingEdge
- java.lang.Object
- 
 public class MMessagingEdge extends MEdge A messaging edge is an edge describing a message flow between some sender and receiver. Used only for communication across pools.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringsourcedescriptionThe source description.protected java.lang.StringtargetdescriptionThe target description.protected java.lang.StringtypeThe type.- 
Fields inherited from class jadex.bpmn.model.MAssociationTargetassociations, associationsdescription
 - 
Fields inherited from class jadex.bpmn.model.MNamedIdElementdescription, name
 - 
Fields inherited from class jadex.bpmn.model.MAnnotationElementannotations
 - 
Fields inherited from class jadex.bpmn.model.MIdElementid, ID_GENERATOR
 
- 
 - 
Constructor SummaryConstructors Constructor Description MMessagingEdge()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconnect(MActivity source, MActivity target)Helper method connecting two activities using this edge.java.lang.StringgetSourceDescription()Get the xml source description.java.lang.StringgetTargetDescription()Get the xml target description.java.lang.StringgetType()Get the type.voidsetSourceDescription(java.lang.String sourcedescription)Set the xml source description.voidsetTargetDescription(java.lang.String targetdescription)Set the xml target Description.voidsetType(java.lang.String type)Set the type.- 
Methods inherited from class jadex.bpmn.model.MAssociationTargetaddAssociation, getAssociations, getAssociationsDescription, removeAssociation, setAssociationsDescription
 - 
Methods inherited from class jadex.bpmn.model.MNamedIdElementgetDescription, getName, setDescription, setName
 - 
Methods inherited from class jadex.bpmn.model.MAnnotationElementaddAnnotation, getAnnotations
 - 
Methods inherited from class jadex.bpmn.model.MIdElementequals, getId, hashCode, setId
 
- 
 
- 
- 
- 
Method Detail- 
connectpublic void connect(MActivity source, MActivity target) Helper method connecting two activities using this edge. The previous connection is removed.- Parameters:
- source- New source of the edge.
- target- New target of the edge.
 
 - 
getSourceDescriptionpublic java.lang.String getSourceDescription() Get the xml source description.- Returns:
- The source description.
 
 - 
setSourceDescriptionpublic void setSourceDescription(java.lang.String sourcedescription) Set the xml source description.- Parameters:
- sourcedescription- The xml source description to set.
 
 - 
getTargetDescriptionpublic java.lang.String getTargetDescription() Get the xml target description.- Returns:
- The target description.
 
 - 
setTargetDescriptionpublic void setTargetDescription(java.lang.String targetdescription) Set the xml target Description.- Parameters:
- targetdescription- The target description to set.
 
 - 
getTypepublic java.lang.String getType() Get the type.- Returns:
- The type.
 
 - 
setTypepublic void setType(java.lang.String type) Set the type.- Parameters:
- type- The type to set.
 
 
- 
 
-