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
Methods in org.codehaus.janino that return IClass.IMethod Modifier and Type Method Description IClass.IMethod
IClass. findIMethod(String methodName, IClass[] parameterTypes)
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(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.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)
Method parameters in org.codehaus.janino with type arguments of type IClass.IMethod Modifier and Type Method Description void
UnitCompiler. getIMethods(IClass type, String methodName, 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.
-