Package jadex.bpmn.task.info
Class PropertyMetaInfo
- java.lang.Object
-
- jadex.bpmn.task.info.PropertyMetaInfo
-
- Direct Known Subclasses:
ParameterMetaInfo
public class PropertyMetaInfo extends java.lang.ObjectMeta information for a property.
-
-
Field Summary
Fields Modifier and Type Field Description protected ClassInfoclazzThe clazz.protected java.lang.StringdescriptionThe parameter description.protected java.lang.StringinitialvalThe initial value.protected java.lang.StringnameThe name.
-
Constructor Summary
Constructors Constructor Description PropertyMetaInfo()Create a new parameter meta info.PropertyMetaInfo(ClassInfo clinfo, java.lang.String name, java.lang.String initialval, java.lang.String description)Create a new parameter meta info.PropertyMetaInfo(java.lang.Class<?> clazz, java.lang.String name, java.lang.String initialval, java.lang.String description)Create a new parameter meta info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInfogetClazz()Get the clazz.java.lang.StringgetDescription()Get the description.java.lang.StringgetInitialValue()Get the initialval.java.lang.StringgetName()Get the name.voidsetClazz(ClassInfo clazz)Sets the clazz.voidsetDescription(java.lang.String description)Sets the description.voidsetInitialValue(java.lang.String initialval)Sets the initialval.voidsetName(java.lang.String name)Sets the name.java.lang.StringtoString()Get the string representation.
-
-
-
Field Detail
-
clazz
protected ClassInfo clazz
The clazz.
-
name
protected java.lang.String name
The name.
-
initialval
protected java.lang.String initialval
The initial value.
-
description
protected java.lang.String description
The parameter description.
-
-
Constructor Detail
-
PropertyMetaInfo
public PropertyMetaInfo()
Create a new parameter meta info.
-
PropertyMetaInfo
public PropertyMetaInfo(java.lang.Class<?> clazz, java.lang.String name, java.lang.String initialval, java.lang.String description)Create a new parameter meta info.
-
PropertyMetaInfo
public PropertyMetaInfo(ClassInfo clinfo, java.lang.String name, java.lang.String initialval, java.lang.String description)
Create a new parameter meta info.
-
-
Method Detail
-
getClazz
public ClassInfo getClazz()
Get the clazz.- Returns:
- The clazz.
-
getName
public java.lang.String getName()
Get the name.- Returns:
- The name.
-
getInitialValue
public java.lang.String getInitialValue()
Get the initialval.- Returns:
- The initialval.
-
getDescription
public java.lang.String getDescription()
Get the description.- Returns:
- The description.
-
setClazz
public void setClazz(ClassInfo clazz)
Sets the clazz.- Parameters:
clazz- The clazz.
-
setName
public void setName(java.lang.String name)
Sets the name.- Parameters:
name- The name.
-
setInitialValue
public void setInitialValue(java.lang.String initialval)
Sets the initialval.- Parameters:
initialval- The initialval.
-
setDescription
public void setDescription(java.lang.String description)
Sets the description.- Parameters:
description- The description.
-
toString
public java.lang.String toString()
Get the string representation.- Overrides:
toStringin classjava.lang.Object- Returns:
- The string representation.
-
-