org.apache.commons.jexl.util.introspection |
|
Java Source File Name | Type | Comment |
ClassMap.java | Class | Taken from the Velocity tree so we can be self-sufficient
A cache of introspection information for a specific class instance. |
Info.java | Class | Little class to carry in info such as template name, line and column for
information error reporting from the uberspector implementations
Taken from velocity for self-sufficiency. |
Introspector.java | Class | This basic function of this class is to return a Method
object for a particular class given the name of a method
and the parameters to the method in the form of an Object[]
The first time the Introspector sees a
class it creates a class method map for the
class in question. |
IntrospectorBase.java | Class | This basic function of this class is to return a Method object for a
particular class given the name of a method and the parameters to the method
in the form of an Object[]
The first time the Introspector sees a class it creates a class method map
for the class in question. |
MethodMap.java | Class | |
Uberspect.java | Interface | 'Federated' introspection/reflection interface to allow the introspection
behavior in Velocity to be customized. |
UberspectImpl.java | Class | Implementation of Uberspect to provide the default introspective
functionality of Velocity. |
UberspectLoggable.java | Interface | Marker interface to let an uberspector indicate it can and wants to log. |
VelMethod.java | Interface | Method used for regular method invocation. |
VelPropertyGet.java | Interface | Interface defining a 'getter'. |
VelPropertySet.java | Interface | Interface used for setting values that appear to be properties in Velocity. |