BCMethod |
BCClass.addDefaultConstructor() |
Convenience method to add a default constructor to this class.
|
BCMethod |
BCClass.declareMethod(java.lang.String name,
java.lang.Class returnType,
java.lang.Class[] paramTypes) |
Add a method to this class.
|
BCMethod |
BCClass.declareMethod(java.lang.String name,
java.lang.String returnType,
java.lang.String[] paramTypes) |
Add a method to this class.
|
BCMethod |
BCClass.declareMethod(java.lang.String name,
BCClass returnType,
BCClass[] paramTypes) |
Add a method to this class.
|
BCMethod |
BCClass.declareMethod(BCMethod method) |
Import the information in the given method as a new method of this class.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name) |
Return the declared method with the given name, or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
java.lang.Class[] paramTypes) |
Return the declared method with the given name and parameter types,
or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
java.lang.Class returnType,
java.lang.Class[] paramTypes) |
Return the declared method with the given name and signature,
or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
java.lang.String[] paramTypes) |
Return the declared method with the given name and parameter types,
or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
java.lang.String returnType,
java.lang.String[] paramTypes) |
Return the declared method with the given name and signature,
or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
BCClass[] paramTypes) |
Return the declared method with the given name and parameter types,
or null if none.
|
BCMethod |
BCClass.getDeclaredMethod(java.lang.String name,
BCClass returnType,
BCClass[] paramTypes) |
Return the declared method with the given name and signature,
or null if none.
|
BCMethod[] |
BCClass.getDeclaredMethods() |
Return all methods declared by this class.
|
BCMethod[] |
BCClass.getDeclaredMethods(java.lang.String name) |
Return all the declared methods with the given name, or an empty array
if none.
|
BCMethod[] |
BCClass.getDeclaredMethods(java.lang.String name,
java.lang.Class[] paramTypes) |
Return all declared methods with the given name and parameter types.
|
BCMethod[] |
BCClass.getDeclaredMethods(java.lang.String name,
java.lang.String[] paramTypes) |
Return all declared methods with the given name and parameter types.
|
BCMethod[] |
BCClass.getDeclaredMethods(java.lang.String name,
BCClass[] paramTypes) |
Return all declared methods with the given name and parameter types.
|
BCMethod |
Code.getMethod() |
The owning method.
|
BCMethod |
Exceptions.getMethod() |
Return the owning method.
|
BCMethod |
MethodInstruction.getMethod() |
Return the method this instruction operates on, or null if not set.
|
BCMethod[] |
BCClass.getMethods() |
Return the methods of this class, including those of all superclasses,
or an empty array if none.
|
BCMethod[] |
BCClass.getMethods(java.lang.String name) |
Return the methods with the given name, including those of all
superclasses, or an empty array if none.
|
BCMethod[] |
BCClass.getMethods(java.lang.String name,
java.lang.Class[] paramTypes) |
Return the methods with the given name and parameter types, including
those of all superclasses, or an empty array if none.
|
BCMethod[] |
BCClass.getMethods(java.lang.String name,
java.lang.String[] paramTypes) |
Return the methods with the given name and parameter types, including
those of all superclasses, or an empty array if none.
|
BCMethod[] |
BCClass.getMethods(java.lang.String name,
BCClass[] paramTypes) |
Return the methods with the given name and parameter types, including
those of all superclasses, or an empty array if none.
|