Package jadex.bridge.modelinfo
Class NFPropertyInfo
- java.lang.Object
- 
- jadex.bridge.modelinfo.NFPropertyInfo
 
- 
- Direct Known Subclasses:
- NFRPropertyInfo
 
 public class NFPropertyInfo extends java.lang.ObjectInfo struct for a nf property.
- 
- 
Field SummaryFields Modifier and Type Field Description protected ClassInfoclazzThe property class.protected java.lang.StringnameThe property name.protected java.util.List<UnparsedExpression>parametersThe parameters (optional).
 - 
Constructor SummaryConstructors Constructor Description NFPropertyInfo()Create a new property.NFPropertyInfo(java.lang.String name, ClassInfo clazz, java.util.List<UnparsedExpression> parameters)Create a new property.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInfogetClazz()Get the clazz.java.lang.StringgetName()Get the name.java.util.List<UnparsedExpression>getParameters()Get the parameters.voidsetClazz(ClassInfo clazz)Set the clazz.voidsetName(java.lang.String name)Set the name.voidsetParameters(java.util.List<UnparsedExpression> parameters)Set the parameters.
 
- 
- 
- 
Field Detail- 
nameprotected java.lang.String name The property name.
 - 
clazzprotected ClassInfo clazz The property class.
 - 
parametersprotected java.util.List<UnparsedExpression> parameters The parameters (optional).
 
- 
 - 
Constructor Detail- 
NFPropertyInfopublic NFPropertyInfo() Create a new property.
 - 
NFPropertyInfopublic NFPropertyInfo(java.lang.String name, ClassInfo clazz, java.util.List<UnparsedExpression> parameters)Create a new property.- Parameters:
- name- The name.
- clazz- The clazz.
 
 
- 
 - 
Method Detail- 
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.
 
 - 
getClazzpublic ClassInfo getClazz() Get the clazz.- Returns:
- The clazz.
 
 - 
setClazzpublic void setClazz(ClassInfo clazz) Set the clazz.- Parameters:
- clazz- The clazz to set.
 
 - 
getParameterspublic java.util.List<UnparsedExpression> getParameters() Get the parameters.- Returns:
- The parameters
 
 - 
setParameterspublic void setParameters(java.util.List<UnparsedExpression> parameters) Set the parameters.- Parameters:
- parameters- The parameters to set
 
 
- 
 
-