|
From: <rga...@us...> - 2002-11-20 12:18:09
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/gui
In directory sc8-pr-cvs1:/tmp/cvs-serv13220
Modified Files:
ControlCentre.java
Log Message:
Added info message at start up
Index: ControlCentre.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/gui/ControlCentre.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** ControlCentre.java 6 Nov 2002 20:11:46 -0000 1.13
--- ControlCentre.java 20 Nov 2002 12:18:06 -0000 1.14
***************
*** 72,117 ****
/**
! *@author rgardler
! *@created 21 October 2002
*/
public class ControlCentre extends JFrame implements EventParserListener {
! /** the default site from which to retireve commentaries */
String strCommentaryPath = "http://news.bbc.co.uk"
! + "/sport/hi/english/static/football/statistics/teams/";
[...1281 lines suppressed...]
}
--- 783,800 ----
* 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();
}
|