Package jadex.bpmn.model
Class MAnnotationDetail
- java.lang.Object
-
- jadex.bpmn.model.MIdElement
-
- jadex.bpmn.model.MAnnotationDetail
-
public class MAnnotationDetail extends MIdElement
The annotation detail class for storing the key and value of an annotation detail.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringkeyThe key.protected java.lang.StringtypeThe type.protected java.lang.StringvalueThe value.-
Fields inherited from class jadex.bpmn.model.MIdElement
id, ID_GENERATOR
-
-
Constructor Summary
Constructors Constructor Description MAnnotationDetail()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetKey()Get the key.java.lang.StringgetType()Get the type.java.lang.StringgetValue()Get the value.voidsetKey(java.lang.String key)Set the key.voidsetType(java.lang.String type)Set the type.voidsetValue(java.lang.String value)Set the value.-
Methods inherited from class jadex.bpmn.model.MIdElement
equals, getId, hashCode, setId
-
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Get the type.- Returns:
- The type.
-
setType
public void setType(java.lang.String type)
Set the type.- Parameters:
type- The type to set.
-
getKey
public java.lang.String getKey()
Get the key.- Returns:
- The key.
-
setKey
public void setKey(java.lang.String key)
Set the key.- Parameters:
key- The key to set.
-
getValue
public java.lang.String getValue()
Get the value.- Returns:
- The value.
-
setValue
public void setValue(java.lang.String value)
Set the value.- Parameters:
value- The value to set.
-
-