From: John P. <joh...@us...> - 2005-09-12 16:25:09
|
Update of /cvsroot/javapathfinder/javapathfinder/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6115/examples Modified Files: IntChoices.java Log Message: * added some static constants for examples Index: IntChoices.java =================================================================== RCS file: /cvsroot/javapathfinder/javapathfinder/examples/IntChoices.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- IntChoices.java 11 Sep 2005 16:17:29 -0000 1.1 +++ IntChoices.java 12 Sep 2005 16:24:31 -0000 1.2 @@ -30,6 +30,13 @@ public class IntChoices { + + static final int ONE = 1; + static final int TWO = 2; + static int THREE = 3; + static int FIFTY = 50; + + static int x = 5; static int y = 55; |