|
From: <rga...@us...> - 2002-11-03 20:46:39
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/gui
In directory usw-pr-cvs1:/tmp/cvs-serv16929
Modified Files:
ControlCentre.java
Log Message:
Improved handling of preferences. Now uses a separate Preferences manager. The user no longer needs to define parameters in the editor window, they are there by default. If the user has customised any settings they will be retained inbetween installs.
Index: ControlCentre.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/gui/ControlCentre.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ControlCentre.java 1 Nov 2002 22:40:47 -0000 1.9
--- ControlCentre.java 3 Nov 2002 20:46:36 -0000 1.10
***************
*** 35,40 ****
*/
package org.fanfoot.gui;
-
import java.awt.Dimension;
import java.io.File;
import java.io.FileNotFoundException;
--- 35,41 ----
*/
package org.fanfoot.gui;
import java.awt.Dimension;
[...1002 lines suppressed...]
--- 636,654 ----
*@param e Description of the Parameter
*/
! public void retrievedCommentary( EventObject e ) {
}
/**
! *@param args the command line arguments
*/
! public static void main( String args[] ) {
! try {
! new ControlCentre().show();
! } catch ( Exception e ) {
! System.out.println( "Unable to load configuration file." );
! e.printStackTrace();
! }
! }
}
|