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.String
description
The description.protected java.lang.String
name
The 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.String
getDescription()
Get the full description of the model element.java.lang.String
getName()
Get the name.void
setDescription(java.lang.String description)
Set the description.void
setName(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.
-
-