Package jadex.bridge.modelinfo
Class NFPropertyInfo
- java.lang.Object
-
- jadex.bridge.modelinfo.NFPropertyInfo
-
- Direct Known Subclasses:
NFRPropertyInfo
public class NFPropertyInfo extends java.lang.Object
Info struct for a nf property.
-
-
Field Summary
Fields Modifier and Type Field Description protected ClassInfo
clazz
The property class.protected java.lang.String
name
The property name.protected java.util.List<UnparsedExpression>
parameters
The parameters (optional).
-
Constructor Summary
Constructors Constructor Description NFPropertyInfo()
Create a new property.NFPropertyInfo(java.lang.String name, ClassInfo clazz, java.util.List<UnparsedExpression> parameters)
Create a new property.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClassInfo
getClazz()
Get the clazz.java.lang.String
getName()
Get the name.java.util.List<UnparsedExpression>
getParameters()
Get the parameters.void
setClazz(ClassInfo clazz)
Set the clazz.void
setName(java.lang.String name)
Set the name.void
setParameters(java.util.List<UnparsedExpression> parameters)
Set the parameters.
-
-
-
Field Detail
-
name
protected java.lang.String name
The property name.
-
clazz
protected ClassInfo clazz
The property class.
-
parameters
protected java.util.List<UnparsedExpression> parameters
The parameters (optional).
-
-
Constructor Detail
-
NFPropertyInfo
public NFPropertyInfo()
Create a new property.
-
NFPropertyInfo
public 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
-
getName
public java.lang.String getName()
Get the name.- Returns:
- The name.
-
setName
public void setName(java.lang.String name)
Set the name.- Parameters:
name
- The name to set.
-
getClazz
public ClassInfo getClazz()
Get the clazz.- Returns:
- The clazz.
-
setClazz
public void setClazz(ClassInfo clazz)
Set the clazz.- Parameters:
clazz
- The clazz to set.
-
getParameters
public java.util.List<UnparsedExpression> getParameters()
Get the parameters.- Returns:
- The parameters
-
setParameters
public void setParameters(java.util.List<UnparsedExpression> parameters)
Set the parameters.- Parameters:
parameters
- The parameters to set
-
-