[Nice-commit] Nice/regtest/java/J Other.java,NONE,1.1 J.java,NONE,1.1
Brought to you by:
bonniot
From: <bo...@us...> - 2003-11-28 14:01:34
|
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) {} } |