Update of /cvsroot/nice/Nice/regtest/java/J
In directory sc8-pr-cvs1:/tmp/cvs-serv16598/regtest/java/J
Added Files:
Other.java J.java
Log Message:
Lazy loading of Java classes and methods. This avoids loading huge
hierarchy recursively, which improves compilation speed and reduces
ambiguities.
--- NEW FILE: Other.java ---
package regtest.java.J;
public class Other {
void otherMethod() {}
}
--- NEW FILE: J.java ---
package regtest.java.J;
public class J {
void jMethod(Other o) {}
}
|