Package ognl.enhance
Interface LocalReference
-
- All Known Implementing Classes:
OgnlLocalReference
public interface LocalReferenceContainer class forOgnlExpressionCompilergenerated local method block references.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExpression()The expression that sets the value, ie the part after<class type> refName = <expression>.java.lang.StringgetName()The name of the assigned variable reference.java.lang.Class<?>getType()The type of reference.
-
-
-
Method Detail
-
getName
java.lang.String getName()
The name of the assigned variable reference.- Returns:
- The name of the reference as it will be when compiled.
-
getExpression
java.lang.String getExpression()
The expression that sets the value, ie the part after<class type> refName = <expression>.- Returns:
- The setting expression.
-
getType
java.lang.Class<?> getType()
The type of reference.- Returns:
- The type.
-
-