From: John P. <joh...@us...> - 2005-09-08 23:25:24
|
Update of /cvsroot/javapathfinder//javapathfinder/src/gov/nasa/jpf/jvm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16745/src/gov/nasa/jpf/jvm Modified Files: ChoiceGenerator.java Log Message: * make id visible to out of package subclasses (public) Index: ChoiceGenerator.java =================================================================== RCS file: /cvsroot/javapathfinder//javapathfinder/src/gov/nasa/jpf/jvm/ChoiceGenerator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChoiceGenerator.java 7 Sep 2005 22:08:20 -0000 1.1 +++ ChoiceGenerator.java 8 Sep 2005 23:25:15 -0000 1.2 @@ -23,7 +23,8 @@ */ public abstract class ChoiceGenerator { -String id; + // want the id to be visible to subclasses outside package +public String id; int idRef; protected ChoiceGenerator (String id) { |