scala.reflect.RichClass

class ReflectiveCall

[source: scala/reflect/RichClass.scala]

class ReflectiveCall[+U](obj : T, name : java.lang.String)
extends AnyRef
A class representing a reflective method call. It is a function object and will make the call with whatever args are given via apply, or it will throw an exception at that point if there was an error in creation.
Direct Known Subclasses:
RichClass.FailedReflectiveCall

Method Summary
def apply (args : Any*) : U
def isErroneous : Boolean
def methodForArgs (args : AnyRef*) : java.lang.reflect.Method
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def methodForArgs(args : AnyRef*) : java.lang.reflect.Method

def isErroneous : Boolean

def apply(args : Any*) : U