| org.apache.velocity.util.introspection.VelPropertySet
VelPropertySet | public interface VelPropertySet (Code) | | Interface used for setting values that appear to be properties in
Velocity. Ex.
#set($foo.bar = "hello")
author: Geir Magnusson Jr. version: $Id: VelPropertySet.java 463298 2006-10-12 16:10:32Z henning $ |
getMethodName | public String getMethodName()(Code) | | returns the method name used to set this 'property'
The method name used to set this 'property' |
invoke | public Object invoke(Object o, Object arg) throws Exception(Code) | | method used to set the value in the object
Parameters: o - Object on which the method will be called with the arg Parameters: arg - value to be set the value returned from the set operation (impl specific) throws: Exception - |
isCacheable | public boolean isCacheable()(Code) | | specifies if this VelPropertySet is cacheable and able to be
reused for this class of object it was returned for
true if can be reused for this class, false if not |
|
|