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.String
key
The key.protected java.lang.String
type
The type.protected java.lang.String
value
The 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.String
getKey()
Get the key.java.lang.String
getType()
Get the type.java.lang.String
getValue()
Get the value.void
setKey(java.lang.String key)
Set the key.void
setType(java.lang.String type)
Set the type.void
setValue(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.
-
-