janino.net

org.codehaus.janino
Class Java.Invocation

java.lang.Object
  extended by org.codehaus.janino.Java.Located
      extended by org.codehaus.janino.Java.Atom
          extended by org.codehaus.janino.Java.Rvalue
              extended by org.codehaus.janino.Java.Invocation
All Implemented Interfaces:
Java.ArrayInitializerOrRvalue, Java.ElementValue, Java.Locatable
Direct Known Subclasses:
Java.MethodInvocation, Java.SuperclassMethodInvocation
Enclosing class:
Java

public abstract static class Java.Invocation
extends Java.Rvalue

Abstract base class for Java.MethodInvocation and Java.SuperclassMethodInvocation.


Field Summary
 Java.Rvalue[] arguments
          Arguments to pass to the method.
 String methodName
          name of the invoked method.
 
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
 
Constructor Summary
protected Java.Invocation(Location location, String methodName, Java.Rvalue[] arguments)
           
 
Method Summary
 
Methods inherited from class org.codehaus.janino.Java.Rvalue
accept, getEnclosingBlockStatement, setEnclosingBlockStatement, toRvalue
 
Methods inherited from class org.codehaus.janino.Java.Atom
accept, toLvalue, toLvalueOrCompileException, toRvalueOrCompileException, toString, toType, toTypeOrCompileException
 
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.codehaus.janino.Java.Locatable
getLocation, throwCompileException
 
Methods inherited from interface org.codehaus.janino.Java.ElementValue
accept
 

Field Detail

methodName

public final String methodName
name of the invoked method.


arguments

public final Java.Rvalue[] arguments
Arguments to pass to the method.

Constructor Detail

Java.Invocation

protected Java.Invocation(Location location,
                          String methodName,
                          Java.Rvalue[] arguments)

janino.net