velosurf.context
Interface HasParametrizedGetter

All Known Implementing Classes:
DBReference, ExternalObjectWrapper, Instance, Velosurf, VelosurfTool

public interface HasParametrizedGetter

Implemented by context objects that do provide a default method handler. This is used to let template designers provide extra external parameters to an attribute or an action, like: $myinstance.myattribute({'param1':'value1','param2':'value2'})


Method Summary
 java.lang.Object getWithParams(java.lang.String key, java.util.Map params)
          Default method handler, called by Velocity when it did not find the specified method
 

Method Detail

getWithParams

java.lang.Object getWithParams(java.lang.String key,
                               java.util.Map params)
Default method handler, called by Velocity when it did not find the specified method

Parameters:
key - asked key
params - passed parameters


~ooOoo~