org.apache.commons.jexl.util
Class GetExecutor
java.lang.Object
org.apache.commons.jexl.util.AbstractExecutor
org.apache.commons.jexl.util.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,v 1.3 2003/10/09 21:28:56 rdonkin Exp $
- Author:
- Jason van Zyl
Field Summary |
private java.lang.Object[] |
args
Container to hold the 'key' part of
get(key). |
Constructor Summary |
GetExecutor(org.apache.commons.logging.Log r,
Introspector ispect,
java.lang.Class c,
java.lang.String key)
Default constructor. |
Method Summary |
java.lang.Object |
execute(java.lang.Object o)
Execute method against context. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
args
private java.lang.Object[] args
- Container to hold the 'key' part of
get(key).
GetExecutor
public GetExecutor(org.apache.commons.logging.Log r,
Introspector ispect,
java.lang.Class c,
java.lang.String key)
throws java.lang.Exception
- Default constructor.
execute
public java.lang.Object execute(java.lang.Object o)
throws java.lang.IllegalAccessException,
java.lang.reflect.InvocationTargetException
- Execute method against context.
- Specified by:
execute
in class AbstractExecutor
- Throws:
java.lang.IllegalAccessException
java.lang.reflect.InvocationTargetException