org.eigenbase.oj.stmt
Class BoundMethod

java.lang.Object
  extended by org.eigenbase.oj.stmt.BoundMethod

public class BoundMethod
extends Object

BoundMethod is a "thunk": a method which has already been bound to a particular object on which it should be invoked, together with the arguments which should be passed on invocation.


Field Summary
(package private)  Object[] args
           
(package private)  Method method
           
(package private)  Object o
           
(package private)  String[] parameterNames
           
 
Constructor Summary
BoundMethod(Object o, Method method, String[] parameterNames)
           
 
Method Summary
 Object call()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

method

Method method

o

Object o

parameterNames

String[] parameterNames

args

Object[] args
Constructor Detail

BoundMethod

BoundMethod(Object o,
            Method method,
            String[] parameterNames)
Method Detail

call

public Object call()
            throws IllegalAccessException,
                   InvocationTargetException
Throws:
IllegalAccessException
InvocationTargetException