Uses of Class
org.codehaus.janino.IClass.IMethod
-
Packages that use IClass.IMethod Package Description org.codehaus.janino The classes in this package pose the core of the Janino JavaTM compiler.org.codehaus.janino.tools Auxiliary command line tools related to JANINO. -
-
Uses of IClass.IMethod in org.codehaus.janino
Subclasses of IClass.IMethod in org.codehaus.janino Modifier and Type Class Description class
ReflectionIClass.ReflectionIMethod
Fields in org.codehaus.janino declared as IClass.IMethod Modifier and Type Field Description private IClass.IMethod[]
IClass. declaredIMethodsCache
(package private) IClass.IMethod
Java.MethodDeclarator. iMethod
The resolvedIClass.IMethod
.(package private) IClass.IMethod
Java.MethodInvocation. iMethod
The resolvedIClass.IMethod
.private IClass.IMethod[]
IClass. iMethodCache
IClass.IMethod
IClassLoader. METH_java_lang_Iterable__iterator
Representation of theIterable.iterator()
method.IClass.IMethod
IClassLoader. METH_java_lang_String__concat__java_lang_String
Representation of theString.concat(String)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__boolean
Representation of theString.valueOf(boolean)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__char
Representation of theString.valueOf(char)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__double
Representation of theString.valueOf(double)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__float
Representation of theString.valueOf(float)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__int
Representation of theString.valueOf(int)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__java_lang_Object
Representation of theString.valueOf(Object)
method.IClass.IMethod
IClassLoader. METH_java_lang_String__valueOf__long
Representation of theString.valueOf(long)
method.IClass.IMethod
IClassLoader. METH_java_lang_StringBuilder__append__java_lang_String
Representation of theStringBuilder.append(String)
method.IClass.IMethod
IClassLoader. METH_java_lang_StringBuilder__toString
Representation of theStringBuilder.toString()
method.IClass.IMethod
IClassLoader. METH_java_util_Iterator__hasNext
Representation of theIterator.hasNext()
method.IClass.IMethod
IClassLoader. METH_java_util_Iterator__next
Representation of theIterator.next()
method.private static IClass.IMethod[]
IClass. NO_IMETHODS
Methods in org.codehaus.janino that return IClass.IMethod Modifier and Type Method Description private IClass.IMethod
UnitCompiler. fakeIMethod(IClass targetType, java.lang.String name, Java.Rvalue[] arguments)
IClass.IMethod
IClass. findIMethod(java.lang.String methodName, IClass[] parameterTypes)
private IClass.IMethod
UnitCompiler. findIMethod(IClass targetType, Java.Invocation invocation)
Find aIClass.IMethod
in the giventargetType
, its superclasses or superinterfaces with the givenname
and for the givenarguments
.IClass.IMethod
UnitCompiler. findIMethod(Java.MethodInvocation mi)
Find named methods of "targetType", examine the argument types and choose the most specific method.IClass.IMethod
UnitCompiler. findIMethod(Java.SuperclassMethodInvocation superclassMethodInvocation)
IClass.IMethod[]
IClass. getDeclaredIMethods()
Returns the methods of the class or interface (but not inherited methods).IClass.IMethod[]
IClass. getDeclaredIMethods(java.lang.String methodName)
Returns all methods with the given name declared in the class or interface (but not inherited methods).protected IClass.IMethod[]
ClassFileIClass. getDeclaredIMethods2()
protected abstract IClass.IMethod[]
IClass. getDeclaredIMethods2()
The uncached version ofIClass.getDeclaredIMethods()
which must be implemented by derived classes.protected IClass.IMethod[]
IClass.PrimitiveIClass. getDeclaredIMethods2()
protected IClass.IMethod[]
ReflectionIClass. getDeclaredIMethods2()
IClass.IMethod[]
IClass. getIMethods()
Returns all methods declared in the class or interface, its superclasses and its superinterfaces.IClass.IMethod
UnitCompiler. toIMethod(Java.MethodDeclarator methodDeclarator)
Methods in org.codehaus.janino with parameters of type IClass.IMethod Modifier and Type Method Description private void
UnitCompiler. checkThrownExceptions(Java.Invocation in, IClass.IMethod iMethod)
private void
UnitCompiler. compileBridgeMethod(ClassFile cf, IClass.IMethod base, IClass.IMethod override)
Compiles a bridge method which will add a method of the signature of base that delegates to override.private void
UnitCompiler. invoke(Java.Locatable locatable, IClass.IMethod iMethod)
private boolean
UnitCompiler. overridesMethod(IClass.IMethod method, IClass type)
private boolean
UnitCompiler. overridesMethodFromSupertype(IClass.IMethod m, IClass type)
Method parameters in org.codehaus.janino with type arguments of type IClass.IMethod Modifier and Type Method Description private void
IClass. getIMethods(java.util.List<IClass.IMethod> result)
void
UnitCompiler. getIMethods(IClass type, java.lang.String methodName, java.util.List<IClass.IMethod> v)
Add all methods with the givenmethodName
that are declared by thetype
, its superclasses and all their superinterfaces to the result listv
. -
Uses of IClass.IMethod in org.codehaus.janino.tools
Methods in org.codehaus.janino.tools with parameters of type IClass.IMethod Modifier and Type Method Description (package private) void
JGrep.MethodInvocationTarget. apply(UnitCompiler uc, Java.Invocation invocation, IClass.IMethod method)
boolean
JGrep.MethodInvocationPredicate. evaluate(UnitCompiler uc, Java.Invocation invocation, IClass.IMethod method)
void
JGrep.MethodInvocationAction. execute(UnitCompiler uc, Java.Invocation invocation, IClass.IMethod method)
Executes some action for a method invocation.
-