Package jadex.bpmn.model
Class MProperty
- java.lang.Object
- 
- jadex.bpmn.model.MIdElement
- 
- jadex.bpmn.model.MAnnotationElement
- 
- jadex.bpmn.model.MProperty
 
 
 
- 
- Direct Known Subclasses:
- MParameter
 
 public class MProperty extends MAnnotationElement A parameter model element.
- 
- 
Field SummaryFields Modifier and Type Field Description protected ClassInfoclazzThe clazz.protected UnparsedExpressioninitialvalThe initial value.protected java.lang.StringnameThe name.- 
Fields inherited from class jadex.bpmn.model.MAnnotationElementannotations
 - 
Fields inherited from class jadex.bpmn.model.MIdElementid, ID_GENERATOR
 
- 
 - 
Constructor SummaryConstructors Constructor Description MProperty()Create a new parameter.MProperty(ClassInfo clazz, java.lang.String name, UnparsedExpression initialval)Create a new parameter.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInfogetClazz()Get the clazz.UnparsedExpressiongetInitialValue()Get the initialval.java.lang.StringgetInitialValueString()Get the initialval.java.lang.StringgetName()Get the name.voidsetClazz(ClassInfo clazz)Set the clazz.voidsetInitialValue(UnparsedExpression initialval)Set the initial value.voidsetInitialValue(java.lang.String initialval)Set the initial value.voidsetName(java.lang.String name)Set the name.java.lang.StringtoString()Get the string representation.- 
Methods inherited from class jadex.bpmn.model.MAnnotationElementaddAnnotation, getAnnotations
 - 
Methods inherited from class jadex.bpmn.model.MIdElementequals, getId, hashCode, setId
 
- 
 
- 
- 
- 
Field Detail- 
clazzprotected ClassInfo clazz The clazz.
 - 
nameprotected java.lang.String name The name.
 - 
initialvalprotected UnparsedExpression initialval The initial value.
 
- 
 - 
Constructor Detail- 
MPropertypublic MProperty() Create a new parameter.
 - 
MPropertypublic MProperty(ClassInfo clazz, java.lang.String name, UnparsedExpression initialval) Create a new parameter.
 
- 
 - 
Method Detail- 
getClazzpublic ClassInfo getClazz() Get the clazz.- Returns:
- The clazz.
 
 - 
setClazzpublic void setClazz(ClassInfo clazz) Set the clazz.- Parameters:
- clazz- The clazz to set.
 
 - 
getNamepublic java.lang.String getName() Get the name.- Returns:
- The name.
 
 - 
setNamepublic void setName(java.lang.String name) Set the name.- Parameters:
- name- The name to set.
 
 - 
getInitialValuepublic UnparsedExpression getInitialValue() Get the initialval.- Returns:
- The initialval.
 
 - 
getInitialValueStringpublic java.lang.String getInitialValueString() Get the initialval.- Returns:
- The initialval.
 
 - 
setInitialValuepublic void setInitialValue(UnparsedExpression initialval) Set the initial value.- Parameters:
- initialval- The initial value to set.
 
 - 
setInitialValuepublic void setInitialValue(java.lang.String initialval) Set the initial value.- Parameters:
- initialval- The initial value to set.
 
 - 
toStringpublic java.lang.String toString() Get the string representation.- Overrides:
- toStringin class- java.lang.Object
- Returns:
- The string representation.
 
 
- 
 
-