| java.lang.Object org.apache.velocity.util.introspection.ClassMap
Method Summary | |
public Method | findMethod(String name, Object[] params) Find a Method using the method name and parameter objects.
Parameters: name - The method name to look up. Parameters: params - An array of parameters for the method. | public Class | getCachedClass() Returns the class object whose methods are cached by this map. |
ClassMap | public ClassMap(Class clazz, Log log)(Code) | | Standard constructor
Parameters: clazz - The class for which this ClassMap gets constructed. |
findMethod | public Method findMethod(String name, Object[] params) throws MethodMap.AmbiguousException(Code) | | Find a Method using the method name and parameter objects.
Parameters: name - The method name to look up. Parameters: params - An array of parameters for the method. A Method object representing the method to invoke or null. throws: MethodMap.AmbiguousException - When more than one method is a match for the parameters. |
getCachedClass | public Class getCachedClass()(Code) | | Returns the class object whose methods are cached by this map.
The class object whose methods are cached by this map. |
|
|