Update of /cvsroot/nice/Nice/web
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19246
Modified Files:
safety.xml
Log Message:
Typography.
Index: safety.xml
===================================================================
RCS file: /cvsroot/nice/Nice/web/safety.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** safety.xml 22 Jan 2004 23:27:37 -0000 1.9
--- safety.xml 23 Jan 2004 00:30:43 -0000 1.10
***************
*** 136,140 ****
<para>
&java; allow casts of the form: <literal>(T) e</literal>.
! At compile time, this assumes that <literal>e</literal> has type
<literal>T</literal>.
At run time, if <literal>e</literal> does not evaluate to a value of type
--- 136,140 ----
<para>
&java; allow casts of the form: <literal>(T) e</literal>.
! At compile time, this assumes that the expression <literal>e</literal> has
type
<literal>T</literal>.
At run time, if <literal>e</literal> does not evaluate to a value of type
***************
*** 184,191 ****
<listitem><para>
there is no way to specify that the stack should only contain
! strings
</para></listitem>
<listitem><para>
! this forces to cast every element pop'ed out of the stack
</para></listitem>
<listitem><para>
--- 184,191 ----
<listitem><para>
there is no way to specify that the stack should only contain
! strings;
</para></listitem>
<listitem><para>
! this forces to cast every element pop'ed out of the stack;
</para></listitem>
<listitem><para>
***************
*** 417,422 ****
Here obviously comes our motto: all this checking should be done
automatically. This is exactly what Nice does. One documents whether a
! type can hold the null value by simply prefixing it with the '?'
! symbol. Thus:
<literal>?String name;</literal> is the declaration of String variable that
might be null. To get its length, one must write
--- 417,422 ----
Here obviously comes our motto: all this checking should be done
automatically. This is exactly what Nice does. One documents whether a
! type can hold the null value by simply prefixing it with the
! <literal>?</literal> symbol. Thus:
<literal>?String name;</literal> is the declaration of String variable that
might be null. To get its length, one must write
-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
|