Package org.apache.el.parser
Class AstIdentifier
- java.lang.Object
-
- org.apache.el.lang.ELSupport
-
- org.apache.el.parser.SimpleNode
-
- org.apache.el.parser.AstIdentifier
-
- All Implemented Interfaces:
Node
public final class AstIdentifier extends SimpleNode
- Author:
- Jacob Hookom [jacob@hookom.net]
-
-
Field Summary
-
Fields inherited from class org.apache.el.parser.SimpleNode
children, id, image, parent
-
Fields inherited from class org.apache.el.lang.ELSupport
COERCE_TO_ZERO
-
-
Constructor Summary
Constructors Constructor Description AstIdentifier(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MethodInfogetMethodInfo(EvaluationContext ctx, java.lang.Class<?>[] paramTypes)java.lang.Class<?>getType(EvaluationContext ctx)java.lang.ObjectgetValue(EvaluationContext ctx)ValueReferencegetValueReference(EvaluationContext ctx)java.lang.Objectinvoke(EvaluationContext ctx, java.lang.Class<?>[] paramTypes, java.lang.Object[] paramValues)booleanisReadOnly(EvaluationContext ctx)voidsetImage(java.lang.String image)voidsetValue(EvaluationContext ctx, java.lang.Object value)-
Methods inherited from class org.apache.el.parser.SimpleNode
accept, equals, getImage, hashCode, isParametersProvided, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtSetParent, toString
-
Methods inherited from class org.apache.el.lang.ELSupport
coerceToBoolean, coerceToEnum, coerceToNumber, coerceToNumber, coerceToNumber, coerceToString, coerceToType, compare, equals, isBigDecimalOp, isBigIntegerOp, isDoubleOp, isLongOp, isStringFloat
-
-
-
-
Method Detail
-
getType
public java.lang.Class<?> getType(EvaluationContext ctx) throws ELException
- Specified by:
getTypein interfaceNode- Overrides:
getTypein classSimpleNode- Throws:
ELException
-
getValue
public java.lang.Object getValue(EvaluationContext ctx) throws ELException
- Specified by:
getValuein interfaceNode- Overrides:
getValuein classSimpleNode- Throws:
ELException
-
isReadOnly
public boolean isReadOnly(EvaluationContext ctx) throws ELException
- Specified by:
isReadOnlyin interfaceNode- Overrides:
isReadOnlyin classSimpleNode- Throws:
ELException
-
setValue
public void setValue(EvaluationContext ctx, java.lang.Object value) throws ELException
- Specified by:
setValuein interfaceNode- Overrides:
setValuein classSimpleNode- Throws:
ELException
-
invoke
public java.lang.Object invoke(EvaluationContext ctx, java.lang.Class<?>[] paramTypes, java.lang.Object[] paramValues) throws ELException
- Specified by:
invokein interfaceNode- Overrides:
invokein classSimpleNode- Throws:
ELException
-
getMethodInfo
public MethodInfo getMethodInfo(EvaluationContext ctx, java.lang.Class<?>[] paramTypes) throws ELException
- Specified by:
getMethodInfoin interfaceNode- Overrides:
getMethodInfoin classSimpleNode- Throws:
ELException
-
setImage
public void setImage(java.lang.String image)
- Overrides:
setImagein classSimpleNode
-
getValueReference
public ValueReference getValueReference(EvaluationContext ctx)
- Specified by:
getValueReferencein interfaceNode- Overrides:
getValueReferencein classSimpleNode
-
-