We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 019cfee commit 6846758Copy full SHA for 6846758
sources/net.sf.j2s.java.core/src/test/Test_Class.java
@@ -281,8 +281,10 @@ public static void main(String[] args) {
281
}
282
283
System.out.println("===========");
284
+ // these won't be the same, because Java declares synthetic access$n methods
285
showMethods(Test_Class.class.getDeclaredMethods());
286
System.out.println("-----------");
287
+ // these won't be the same, because SwingJS returns public and package-private methods
288
showMethods(Test_Class.class.getMethods());
289
290
showMethods(Test_Class_int.class.getDeclaredMethods());
0 commit comments