C# Class NVelocity.Util.Introspection.UberspectImpl

Implementation of Uberspect to provide the default introspective functionality of Velocity *
Inheritance: IUberspect, UberspectLoggable
Mostrar archivo Open project: rasmus-toftdahl-olesen/NVelocity Class Usage Examples

Public Methods

Method Description
GetMethod ( Object obj, String methodName, Object args, Info i ) : IVelMethod

Method

GetPropertyGet ( Object obj, String identifier, Info i ) : IVelPropertyGet

Property getter.

GetPropertySet ( Object obj, String identifier, Object arg, Info i ) : IVelPropertySet

Property setter.

Init ( ) : void

init - does nothing - we need to have setRuntimeLogger called before getting our introspector, as the default vel introspector depends upon it.

Method Details

GetMethod() public method

Method
public GetMethod ( Object obj, String methodName, Object args, Info i ) : IVelMethod
obj Object
methodName String
args Object
i Info
return IVelMethod

GetPropertyGet() public method

Property getter.
public GetPropertyGet ( Object obj, String identifier, Info i ) : IVelPropertyGet
obj Object
identifier String
i Info
return IVelPropertyGet

GetPropertySet() public method

Property setter.
public GetPropertySet ( Object obj, String identifier, Object arg, Info i ) : IVelPropertySet
obj Object
identifier String
arg Object
i Info
return IVelPropertySet

Init() public method

init - does nothing - we need to have setRuntimeLogger called before getting our introspector, as the default vel introspector depends upon it.
public Init ( ) : void
return void