Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/gui
In directory usw-pr-cvs1:/tmp/cvs-serv5719
Modified Files:
ControlCentre.java
Log Message:
Improved error reporting
Index: ControlCentre.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/gui/ControlCentre.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** ControlCentre.java 6 Nov 2002 14:20:16 -0000 1.12
--- ControlCentre.java 6 Nov 2002 20:11:46 -0000 1.13
***************
*** 72,125 ****
/**
! *@author rgardler
! *@created 21 October 2002
*/
public class ControlCentre extends JFrame implements EventParserListener {
! /**
! * the default site from which to retireve commentaries
! */
[...1243 lines suppressed...]
}
--- 703,720 ----
* Loaded Commentay file.
*
! *@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();
}
|