Update of /cvsroot/nice/Nice/src/nice/tools/code
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11867/src/nice/tools/code
Modified Files:
Types.java TypeImport.java
Log Message:
Remember String=>Class mappings across compilations.
Index: TypeImport.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/nice/tools/code/TypeImport.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** TypeImport.java 1 Jul 2004 11:41:41 -0000 1.5
--- TypeImport.java 2 Jul 2004 12:12:20 -0000 1.6
***************
*** 131,138 ****
return null;
}
!
! static HashMap stringToReflectClass;
!
! /**
Searches a native class given by its fully qualified name
in the user classpath.
--- 131,138 ----
return null;
}
!
! static HashMap stringToReflectClass = new HashMap();
!
! /**
Searches a native class given by its fully qualified name
in the user classpath.
Index: Types.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/nice/tools/code/Types.java,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** Types.java 25 Feb 2004 11:23:28 -0000 1.57
--- Types.java 2 Jul 2004 12:12:20 -0000 1.58
***************
*** 644,648 ****
{
tcToGBType = new HashMap();
- TypeImport.stringToReflectClass = new HashMap();
Import.reset();
}
--- 644,647 ----
|