org.apache.velocity.runtime.parser.node
Class GetExecutor

java.lang.Object
  extended byorg.apache.velocity.runtime.parser.node.AbstractExecutor
      extended byorg.apache.velocity.runtime.parser.node.GetExecutor

public class GetExecutor
extends AbstractExecutor

Executor that simply tries to execute a get(key) operation. This will try to find a get(key) method for any type of object, not just objects that implement the Map interface as was previously the case.

Version:
$Id: GetExecutor.java 440843 2006-09-06 19:39:58Z henning $
Author:
Jason van Zyl

Field Summary
 
Fields inherited from class org.apache.velocity.runtime.parser.node.AbstractExecutor
log
 
Constructor Summary
GetExecutor(Log log, Introspector introspector, Class clazz, String property)
           
GetExecutor(RuntimeLogger rlog, Introspector introspector, Class clazz, String property)
          Deprecated. RuntimeLogger is deprecated. Use the other constructor.
 
Method Summary
protected  void discover(Class clazz)
           
 Object execute(Object o)
          Execute method against context.
 
Methods inherited from class org.apache.velocity.runtime.parser.node.AbstractExecutor
getMethod, isAlive, setMethod
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GetExecutor

public GetExecutor(Log log,
                   Introspector introspector,
                   Class clazz,
                   String property)

GetExecutor

public GetExecutor(RuntimeLogger rlog,
                   Introspector introspector,
                   Class clazz,
                   String property)
Deprecated. RuntimeLogger is deprecated. Use the other constructor.

Method Detail

discover

protected void discover(Class clazz)

execute

public Object execute(Object o)
               throws IllegalAccessException,
                      InvocationTargetException
Execute method against context.

Specified by:
execute in class AbstractExecutor
Throws:
IllegalAccessException
InvocationTargetException


Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.