| org.apache.velocity.util.introspection.VelPropertyGet
VelPropertyGet | public interface VelPropertyGet (Code) | | Interface defining a 'getter'. For uses when looking for resolution of
property references
$foo.bar
author: Geir Magnusson Jr. version: $Id: VelPropertyGet.java 463298 2006-10-12 16:10:32Z henning $ |
getMethodName | public String getMethodName()(Code) | | returns the method name used to return this 'property'
The method name used to return this 'property' |
invoke | public Object invoke(Object o) throws Exception(Code) | | invocation method - called when the 'get action' should be
preformed and a value returned
Parameters: o - The resulting Object. throws: Exception - |
isCacheable | public boolean isCacheable()(Code) | | specifies if this VelPropertyGet is cacheable and able to be
reused for this class of object it was returned for
true if can be reused for this class, false if not |
|
|