Class VariableConfigurationNode.AttributeReference
- java.lang.Object
-
- org.apache.manifoldcf.scriptengine.VariableConfigurationNode.AttributeReference
-
- All Implemented Interfaces:
VariableReference
- Enclosing class:
- VariableConfigurationNode
protected class VariableConfigurationNode.AttributeReference extends java.lang.Object implements VariableReference
Implement VariableReference to allow attributes to be set or cleared
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringattributeName
-
Constructor Summary
Constructors Constructor Description AttributeReference(java.lang.String attributeName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisNull()Check if this reference is nullVariableresolve()Resolve the referencevoidsetReference(Variable v)Set the reference
-
-
-
Method Detail
-
setReference
public void setReference(Variable v) throws ScriptException
Description copied from interface:VariableReferenceSet the reference- Specified by:
setReferencein interfaceVariableReference- Throws:
ScriptException
-
resolve
public Variable resolve() throws ScriptException
Description copied from interface:VariableReferenceResolve the reference- Specified by:
resolvein interfaceVariableReference- Throws:
ScriptException
-
isNull
public boolean isNull()
Description copied from interface:VariableReferenceCheck if this reference is null- Specified by:
isNullin interfaceVariableReference
-
-