Package jadex.bpmn.model
Class MNamedIdElement
- java.lang.Object
-
- jadex.bpmn.model.MIdElement
-
- jadex.bpmn.model.MAnnotationElement
-
- jadex.bpmn.model.MNamedIdElement
-
- Direct Known Subclasses:
MArtifact,MAssociationTarget
public class MNamedIdElement extends MAnnotationElement
Base class for named id elements.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringdescriptionThe description.protected java.lang.StringnameThe 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 MNamedIdElement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the full description of the model element.java.lang.StringgetName()Get the name.voidsetDescription(java.lang.String description)Set the description.voidsetName(java.lang.String name)Set the name.-
Methods inherited from class jadex.bpmn.model.MAnnotationElement
addAnnotation, getAnnotations
-
Methods inherited from class jadex.bpmn.model.MIdElement
equals, getId, hashCode, setId
-
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Get the full description of the model element.- Returns:
- The description.
-
setDescription
public void setDescription(java.lang.String description)
Set the description.- Parameters:
description- the description to set
-
getName
public java.lang.String getName()
Get the name.- Returns:
- The name.
-
setName
public void setName(java.lang.String name)
Set the name.- Parameters:
name- The name to set.
-
-