You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (Methodmethod : javaCodeToClass.getMethods()) {
37
-
Stringname = method.getName();
38
-
39
-
if (!name.equals("test")) {
40
-
continue;
41
-
}
42
-
43
-
Parameter[] parameters = method.getParameters() ;
44
-
45
-
for (Parameterparameter : parameters) {
46
-
System.out.println(parameter.getName());
47
-
}
48
-
}
19
+
// URLClassLoader ucl = new URLClassLoader(new URL[] {
20
+
// new File("D:/Program Files/gradle-2.14/caches/modules-2/files-2.1/org.nutz/nutz/1.r.56.r3/d0300412d4907542477e663d916bc32baae1d6e/nutz-1.r.56.r3-sources.jar").toURI().toURL() },
21
+
// ClassLoader.getSystemClassLoader());
22
+
//
23
+
// try {
24
+
// DynamicEngine.flush(ucl);
25
+
// } catch (TaskException e) {
26
+
// // TODO Auto-generated catch block
27
+
// e.printStackTrace();
28
+
// }
29
+
//
30
+
// DynamicEngine de = DynamicEngine.getInstance();
0 commit comments