|
From: <rga...@us...> - 2002-11-03 21:02:21
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/prefs
In directory usw-pr-cvs1:/tmp/cvs-serv21716
Modified Files:
PreferenceManager.java
Log Message:
DOH!
I broke the build (now fixed)
Index: PreferenceManager.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/prefs/PreferenceManager.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PreferenceManager.java 3 Nov 2002 20:46:49 -0000 1.1
--- PreferenceManager.java 3 Nov 2002 21:02:17 -0000 1.2
***************
*** 54,78 ****
Preferences systemPrefs = Preferences.systemRoot();
/** Where to write log info */
! final Logger logger = Logger.getLogger( CSLAS_NAME );
/** The classname of this class (used by logger) */
! final static String CLASS_NAME = "org.fanfoot.prefs.PreferenceManager";
/** String indicating the AutoScorer class of properties */
! final static String AUTO_SCORER_CLASS = "org/fanfoot/AutoScorer";
/** Key for AutoScorer EventConfigurationFile path */
! final static String AUTO_SCORER_EVENT_CONFIGURATION_FILE_KEY
= "EventConfigurationFile";
/** Key for AutoScorer Scores configuration XSL path */
! final static String AUTO_SCORER_SCORES_CONFIGURATION_FILE_KEY
= "ScoresConfigurationFile";
/** Key for AutoScorer Scores to HTML XSL path */
! final static String AUTO_SCORER_SCORES_TO_HTML_STYLESHEET_KEY
= "Scores2HTMLStylesheet";
/** Control Centre class name * */
! final static String CONTROL_CENTRE_CLASS = "org/fanfoot/gui/ControlCentre";
/** String indicating the GUI CONTROLCENTRE class of properties */
! final static String GUI_CONTROL_CENTRE_CLASS = CONTROL_CENTRE_CLASS;
/** Key for AutoScorer EventConfigurationFile path */
! final static String GUI_CONTROL_CENTRE_DEBUG_KEY = "debug";
--- 54,78 ----
Preferences systemPrefs = Preferences.systemRoot();
/** Where to write log info */
! final Logger logger = Logger.getLogger( CLASS_NAME );
/** The classname of this class (used by logger) */
! public final static String CLASS_NAME = "org.fanfoot.prefs.PreferenceManager";
/** String indicating the AutoScorer class of properties */
! public final static String AUTO_SCORER_CLASS = "org/fanfoot/AutoScorer";
/** Key for AutoScorer EventConfigurationFile path */
! public final static String AUTO_SCORER_EVENT_CONFIGURATION_FILE_KEY
= "EventConfigurationFile";
/** Key for AutoScorer Scores configuration XSL path */
! public final static String AUTO_SCORER_SCORES_CONFIGURATION_FILE_KEY
= "ScoresConfigurationFile";
/** Key for AutoScorer Scores to HTML XSL path */
! public final static String AUTO_SCORER_SCORES_TO_HTML_STYLESHEET_KEY
= "Scores2HTMLStylesheet";
/** Control Centre class name * */
! public final static String CONTROL_CENTRE_CLASS = "org/fanfoot/gui/ControlCentre";
/** String indicating the GUI CONTROLCENTRE class of properties */
! public final static String GUI_CONTROL_CENTRE_CLASS = CONTROL_CENTRE_CLASS;
/** Key for AutoScorer EventConfigurationFile path */
! public final static String GUI_CONTROL_CENTRE_DEBUG_KEY = "debug";
|