| org.apache.velocity.util.introspection.Uberspect
All known Subclasses: org.apache.velocity.util.introspection.UberspectImpl,
Uberspect | public interface Uberspect (Code) | | 'Federated' introspection/reflection interface to allow the introspection
behavior in Velocity to be customized.
author: Geir Magusson Jr. version: $Id: Uberspect.java 463298 2006-10-12 16:10:32Z henning $ |
getMethod | public VelMethod getMethod(Object obj, String method, Object[] args, Info info) throws Exception(Code) | | Returns a general method, corresponding to $foo.bar( $woogie )
Parameters: obj - Parameters: method - Parameters: args - Parameters: info - A Velocity Method. throws: Exception - |
getPropertyGet | public VelPropertyGet getPropertyGet(Object obj, String identifier, Info info) throws Exception(Code) | | Property getter - returns VelPropertyGet appropos for #set($foo = $bar.woogie)
Parameters: obj - Parameters: identifier - Parameters: info - A Velocity Getter. throws: Exception - |
getPropertySet | public VelPropertySet getPropertySet(Object obj, String identifier, Object arg, Info info) throws Exception(Code) | | Property setter - returns VelPropertySet appropos for #set($foo.bar = "geir")
Parameters: obj - Parameters: identifier - Parameters: arg - Parameters: info - A Velocity Setter. throws: Exception - |
|
|