OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CtMethod
(Results
1 - 3
of
3
) sorted by null
/external/javassist/src/main/javassist/
CtMethod.java
21
* An instance of <code>
CtMethod
</code> represents a method.
30
public final class
CtMethod
extends CtBehavior {
36
CtMethod
(MethodInfo minfo, CtClass declaring) {
50
* @see CtClass#addMethod(
CtMethod
)
52
public
CtMethod
(CtClass returnType, String mname,
62
* Creates a copy of a <code>
CtMethod
</code> object.
106
* @see CtClass#addMethod(
CtMethod
)
109
public
CtMethod
(
CtMethod
src, CtClass declaring, ClassMap map)
126
public static
CtMethod
make(String src, CtClass declaring
[
all
...]
/external/android-mock/src/com/google/android/testing/mocking/
AndroidMockGenerator.java
24
import javassist.
CtMethod
;
293
clazz.addMethod(
CtMethod
.make(getSetDelegateMethodSource(newInterface), clazz));
306
CtMethod
newMethod =
CtMethod
.make(getGetDelegateMethodSource(), clazz);
308
CtMethod
existingMethod = clazz.getMethod(newMethod.getName(), newMethod.getSignature());
333
CtMethod
newMethod =
CtMethod
.make(getInterfaceMethodSource(method), newInterface);
351
List<
CtMethod
> existingMethods = Arrays.asList(newClass.getDeclaredMethods());
355
CtMethod
newMethod =
CtMethod
.make(getDelegateMethodSource(method), newClass)
[
all
...]
/external/robolectric/lib/main/
javassist-3.14.0-GA.jar
Completed in 5971 milliseconds