Package | Description |
---|---|
org.codehaus.janino |
The classes in this package pose the core of the Janino JavaTM compiler.
|
Modifier and Type | Method and Description |
---|---|
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.findIMethod(String methodName,
IClass[] parameterTypes) |
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 abstract IClass.IMethod[] |
IClass.getDeclaredIMethods2()
The uncached version of
IClass.getDeclaredIMethods() which must be implemented by derived classes. |
protected IClass.IMethod[] |
ClassFileIClass.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) |
Modifier and Type | Method and Description |
---|---|
void |
UnitCompiler.getIMethods(IClass type,
String methodName,
List<IClass.IMethod> v)
Add all methods with the given
methodName that are declared by the type , its superclasses and
all their superinterfaces to the result list v . |
Copyright © 2001–2016. All rights reserved.