[Nice-commit] Nice/src/bossa/syntax javaMethod.nice,1.13,1.14
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-04-01 16:06:04
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10336/src/bossa/syntax Modified Files: javaMethod.nice Log Message: Use the java method name in the full name, not the nice one, to be fully independent of the retyping to identify the java method, in the rare case where those two names are different. Index: javaMethod.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/javaMethod.nice,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** javaMethod.nice 1 Apr 2005 00:09:23 -0000 1.13 --- javaMethod.nice 1 Apr 2005 16:05:53 -0000 1.14 *************** *** 34,40 **** getFullName() { ! return "JAVA:" + name + ':' + ! this.getReflectMethod().getDeclaringClass().getName() + '.' + ! this.getReflectMethod().getSignature(); } --- 34,41 ---- getFullName() { ! let reflectMethod = notNull(reflectMethod); ! return "JAVA:" + reflectMethod.getName() + ':' + ! reflectMethod.getDeclaringClass().getName() + '.' + ! reflectMethod.getSignature(); } |