| org.apache.velocity.util.introspection.VelMethod
VelMethod | public interface VelMethod (Code) | | Method used for regular method invocation
$foo.bar()
author: Geir Magnusson Jr. version: $Id: VelMethod.java 463298 2006-10-12 16:10:32Z henning $ |
getMethodName | public String getMethodName()(Code) | | returns the method name used
The method name used |
getReturnType | public Class getReturnType()(Code) | | returns the return type of the method invoked
The return type of the method invoked |
invoke | public Object invoke(Object o, Object[] params) throws Exception(Code) | | invocation method - called when the method invocationshould be
preformed and a value returned
Parameters: o - Parameters: params - The resulting object. throws: Exception - |
isCacheable | public boolean isCacheable()(Code) | | specifies if this VelMethod 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 |
|
|