Package jadex.bpmn.model
Class MAssociation
- java.lang.Object
- 
- jadex.bpmn.model.MIdElement
- 
- jadex.bpmn.model.MAnnotationElement
- 
- jadex.bpmn.model.MAssociation
 
 
 
- 
 public class MAssociation extends MAnnotationElement An association is a connection between an artifact and some other thing.
- 
- 
Field SummaryFields Modifier and Type Field Description protected MArtifactsourceThe source.protected MAssociationTargettargetThe target.protected java.lang.StringtypeThe type.- 
Fields inherited from class jadex.bpmn.model.MAnnotationElementannotations
 - 
Fields inherited from class jadex.bpmn.model.MIdElementid, ID_GENERATOR
 
- 
 - 
Constructor SummaryConstructors Constructor Description MAssociation()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description MArtifactgetSource()Get the source.MAssociationTargetgetTarget()Get the target.java.lang.StringgetType()Get the type.voidsetSource(MArtifact source)Set the source.voidsetTarget(MAssociationTarget target)Set the target.voidsetType(java.lang.String type)Set the type.- 
Methods inherited from class jadex.bpmn.model.MAnnotationElementaddAnnotation, getAnnotations
 - 
Methods inherited from class jadex.bpmn.model.MIdElementequals, getId, hashCode, setId
 
- 
 
- 
- 
- 
Field Detail- 
sourceprotected MArtifact source The source.
 - 
targetprotected MAssociationTarget target The target.
 - 
typeprotected java.lang.String type The type.
 
- 
 - 
Method Detail- 
getSourcepublic MArtifact getSource() Get the source.- Returns:
- The source.
 
 - 
setSourcepublic void setSource(MArtifact source) Set the source.- Parameters:
- source- The source to set.
 
 - 
getTargetpublic MAssociationTarget getTarget() Get the target.- Returns:
- The target.
 
 - 
setTargetpublic void setTarget(MAssociationTarget target) Set the target.- Parameters:
- target- The target 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.
 
 
- 
 
-