Class UberspectImpl.VelGetterImpl
- java.lang.Object
-
- org.apache.velocity.util.introspection.UberspectImpl.VelGetterImpl
-
- All Implemented Interfaces:
VelPropertyGet
- Enclosing class:
- UberspectImpl
public static class UberspectImpl.VelGetterImpl extends java.lang.Object implements VelPropertyGet
-
-
Constructor Summary
Constructors Constructor Description VelGetterImpl(AbstractExecutor exec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMethodName()returns the method name used to return this 'property'java.lang.Objectinvoke(java.lang.Object o)invocation method - called when the 'get action' should be preformed and a value returnedbooleanisCacheable()specifies if this VelPropertyGet is cacheable and able to be reused for this class of object it was returned for
-
-
-
Constructor Detail
-
VelGetterImpl
public VelGetterImpl(AbstractExecutor exec)
- Parameters:
exec-
-
-
Method Detail
-
invoke
public java.lang.Object invoke(java.lang.Object o) throws java.lang.ExceptionDescription copied from interface:VelPropertyGetinvocation method - called when the 'get action' should be preformed and a value returned- Specified by:
invokein interfaceVelPropertyGet- Returns:
- The resulting Object.
- Throws:
java.lang.Exception- See Also:
VelPropertyGet.invoke(java.lang.Object)
-
isCacheable
public boolean isCacheable()
Description copied from interface:VelPropertyGetspecifies if this VelPropertyGet is cacheable and able to be reused for this class of object it was returned for- Specified by:
isCacheablein interfaceVelPropertyGet- Returns:
- true if can be reused for this class, false if not
- See Also:
VelPropertyGet.isCacheable()
-
getMethodName
public java.lang.String getMethodName()
Description copied from interface:VelPropertyGetreturns the method name used to return this 'property'- Specified by:
getMethodNamein interfaceVelPropertyGet- Returns:
- The method name used to return this 'property'
- See Also:
VelPropertyGet.getMethodName()
-
-