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 classReflectionIClass.ReflectionIMethodMethods in org.codehaus.janino that return IClass.IMethod Modifier and Type Method Description private IClass.IMethodUnitCompiler. fakeIMethod(IClass targetType, java.lang.String name, Java.Rvalue[] arguments)IClass.IMethodIClass. findIMethod(java.lang.String methodName, IClass[] parameterTypes)private IClass.IMethodUnitCompiler. findIMethod(IType targetType, Java.Invocation invocation)Finds aIClass.IMethodin the given targetType, its superclasses or superinterfaces which is applicable with the given invocation.IClass.IMethodUnitCompiler. findIMethod(Java.MethodInvocation mi)Finds methods of the mi.targetnamed mi.methodName, examines the argument types and chooses the most specific method.IClass.IMethodUnitCompiler. 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.IMethodIClassLoader. getMethod(IClass declaringType, java.lang.String name, IClass... parameterTypes)private IClass.IMethod[]ReflectionIClass. methodsToIMethods(java.lang.reflect.Method[] methods)private static IClass.IMethodIClassLoader. requireMethod(IClass declaringType, java.lang.String name, IClass... parameterTypes)IClass.IMethodUnitCompiler. toIMethod(Java.MethodDeclarator methodDeclarator)Methods in org.codehaus.janino with parameters of type IClass.IMethod Modifier and Type Method Description private voidUnitCompiler. checkThrownExceptions(Java.Invocation in, IClass.IMethod iMethod)private voidUnitCompiler. 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 voidUnitCompiler. 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 booleanUnitCompiler. overridesMethod(IClass.IMethod method, IClass type)private booleanUnitCompiler. 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 voidIClass. getIMethods(java.util.List<IClass.IMethod> result)voidUnitCompiler. 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.
-