Update of /cvsroot/nice/Nice
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32734
Modified Files:
NEWS
Log Message:
Handle type variables that are used simultaneously with and without
nullness markers (implements RFE #738496).
Index: NEWS
===================================================================
RCS file: /cvsroot/nice/Nice/NEWS,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** NEWS 11 Jun 2004 15:53:36 -0000 1.32
--- NEWS 16 Jun 2004 10:00:51 -0000 1.33
***************
*** 7,10 ****
--- 7,17 ----
an interface defined in the current package, with:
class some.pkg.ClassName implements MyInterface;
+ * Type parameters can always be qualified with nullness markers '?' and '!'.
+ For instance, a class declaration can be
+ class OptionalRef<T>
+ {
+ // The value might be null
+ ?T value;
+ }
* Allow calls to Java methods defined in a Java class that implements
several Java interfaces declaring that same method, like
|