File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
sources/net.sf.j2s.java.core/src Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -281,6 +281,10 @@ public static String loadStaticResource(String file) {
281281 return s ;
282282 }
283283
284+ public static boolean isClassLoaded (String className ) {
285+ return (/** @j2sNative Clazz._isClassDefined(className) || */ false );
286+ }
287+
284288 static String processCSS (String css , String path ) {
285289 if (path != null && css .indexOf ("images/" ) >= 0 ) {
286290 path = path .substring (0 , path .lastIndexOf ("/" ) + 1 ) + "images/" ;
Original file line number Diff line number Diff line change 99@ SuppressWarnings ("rawtypes" )
1010class Test_Class extends Test_ {
1111
12+ private void test (String s ) {
13+
14+ }
15+
16+ private void test (Integer i ) {
17+
18+ }
19+
1220 int test1 = 0 ;
1321
1422 static String s = "test" ;
You can’t perform that action at this time.
0 commit comments