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 SummaryFields 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.MIdElementid, ID_GENERATOR
 
- 
 - 
Constructor SummaryConstructors Constructor Description MAnnotationDetail()
 - 
Method SummaryAll 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.MIdElementequals, getId, hashCode, setId
 
- 
 
- 
- 
- 
Method Detail- 
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.
 
 - 
getKeypublic java.lang.String getKey() Get the key.- Returns:
- The key.
 
 - 
setKeypublic void setKey(java.lang.String key) Set the key.- Parameters:
- key- The key to set.
 
 - 
getValuepublic java.lang.String getValue() Get the value.- Returns:
- The value.
 
 - 
setValuepublic void setValue(java.lang.String value) Set the value.- Parameters:
- value- The value to set.
 
 
- 
 
-