Class NullVariableReference
- java.lang.Object
-
- org.apache.manifoldcf.scriptengine.NullVariableReference
-
- All Implemented Interfaces:
VariableReference
public class NullVariableReference extends java.lang.Object implements VariableReference
Null variable reference.
-
-
Constructor Summary
Constructors Constructor Description NullVariableReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isNull()
Check if this reference is nullVariable
resolve()
Resolve the referencevoid
setReference(Variable object)
Set the reference
-
-
-
Method Detail
-
setReference
public void setReference(Variable object) throws ScriptException
Set the reference- Specified by:
setReference
in interfaceVariableReference
- Throws:
ScriptException
-
resolve
public Variable resolve() throws ScriptException
Resolve the reference- Specified by:
resolve
in interfaceVariableReference
- Throws:
ScriptException
-
isNull
public boolean isNull()
Check if this reference is null- Specified by:
isNull
in interfaceVariableReference
-
-