Home | History | Annotate | Download | only in src

Lines Matching refs:Method

18 import java.lang.reflect.Method;
69 * Recursive synchronized method.
108 * Confirms that we can have 32 nested monitors on one method.
149 * method.
232 Method[] methods = c.getDeclaredMethods();
235 // will give us the method we need to run.
236 Method method = null;
237 for (Method m : methods) {
239 method = m;
244 if (method == null) {
245 System.out.println("Could not find test method for " + className);
246 } else if (!Modifier.isStatic(method.getModifiers())) {
247 System.out.println("Test method for " + className + " is not static.");
249 method.invoke(null, parameters);