public class SimpleValueResolver extends java.lang.Object implements VariableResolver
| Modifier and Type | Field and Description |
|---|---|
private java.lang.Object |
value |
| Constructor and Description |
|---|
SimpleValueResolver(java.lang.Object value) |
| Modifier and Type | Method and Description |
|---|---|
int |
getFlags()
Returns the bitset of special variable flags.
|
java.lang.String |
getName()
Returns the name of external variable.
|
java.lang.Class |
getType()
This should return the type of the variable.
|
java.lang.Object |
getValue()
Returns the physical target value of the variable.
|
void |
setStaticType(java.lang.Class type) |
void |
setValue(java.lang.Object value)
Sets the value of the physical target value.
|
public java.lang.String getName()
VariableResolvergetName in interface VariableResolverpublic java.lang.Class getType()
VariableResolvergetType in interface VariableResolverpublic void setStaticType(java.lang.Class type)
setStaticType in interface VariableResolverpublic int getFlags()
VariableResolvergetFlags in interface VariableResolverpublic java.lang.Object getValue()
VariableResolvergetValue in interface VariableResolverpublic void setValue(java.lang.Object value)
VariableResolversetValue in interface VariableResolvervalue - The new value.