Uses of Class
org.codehaus.janino.IClass.IMethod
-
Packages that use IClass.IMethod Package Description org.codehaus.janino The core of the Janino Java compiler. -
-
Uses of IClass.IMethod in org.codehaus.janino
Subclasses of IClass.IMethod in org.codehaus.janino Modifier and Type Class Description class
ReflectionIClass.ReflectionIMethod
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(IType targetType, Java.Invocation invocation)
Finds aIClass.IMethod
in the given targetType, its superclasses or superinterfaces which is applicable with the given invocation.IClass.IMethod
UnitCompiler. findIMethod(Java.MethodInvocation mi)
Finds methods of the mi.
target
named mi.
methodName
, examines the argument types and chooses 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.private static IClass.IMethod
IClassLoader. getMethod(IClass declaringType, java.lang.String name, IClass... parameterTypes)
private IClass.IMethod[]
ReflectionIClass. methodsToIMethods(java.lang.reflect.Method[] methods)
private static IClass.IMethod
IClassLoader. requireMethod(IClass declaringType, java.lang.String name, IClass... parameterTypes)
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. generateBridgeMethod(ClassFile cf, IClass declaringIClass, IClass.IMethod base, IClass.IMethod override)
Generates and compiles a bridge method with signature base that delegates to override.private void
UnitCompiler. invokeMethod(Java.Locatable locatable, IClass.IMethod iMethod)
Invokes the iMethod; assumes thatthis
(unless iMethod is static) and the correct number and types of arguments are on the operand stack.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)
Adds all methods with the given methodName that are declared by the type, its superclasses and all their superinterfaces to the result list v.
-