ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/core/loggers/SimpleSwingLogger.java
(Generate patch)

Comparing projects/cms/source/server/uk/org/iscream/cms/server/core/loggers/SimpleSwingLogger.java (file contents):
Revision 1.6 by tdb, Sun Feb 25 20:34:17 2001 UTC vs.
Revision 1.14 by tdb, Sun Aug 1 10:40:56 2004 UTC

# Line 1 | Line 1
1 + /*
2 + * i-scream central monitoring system
3 + * http://www.i-scream.org
4 + * Copyright (C) 2000-2002 i-scream
5 + *
6 + * This program is free software; you can redistribute it and/or
7 + * modify it under the terms of the GNU General Public License
8 + * as published by the Free Software Foundation; either version 2
9 + * of the License, or (at your option) any later version.
10 + *
11 + * This program is distributed in the hope that it will be useful,
12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 + * GNU General Public License for more details.
15 + *
16 + * You should have received a copy of the GNU General Public License
17 + * along with this program; if not, write to the Free Software
18 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 + */
20 +
21   //---PACKAGE DECLARATION---
22 < package uk.ac.ukc.iscream.core.loggers;
22 > package uk.org.iscream.cms.server.core.loggers;
23  
24   //---IMPORTS---
25 < import uk.ac.ukc.iscream.util.*;
26 < import uk.ac.ukc.iscream.core.*;
25 > import uk.org.iscream.cms.util.*;
26 > import uk.org.iscream.cms.server.core.*;
27   import java.util.Date;
28   import java.text.DateFormat;
29   import java.util.Locale;
# Line 47 | Line 67 | public class SimpleSwingLogger extends JFrame implemen
67       * Creates a new Simple Swing Logger.
68       */
69      public SimpleSwingLogger() {
70 <        _maxMessages = Integer.parseInt(System.getProperty("uk.ac.ukc.iscream.LoggerClass.SimpleSwingLogger.maxMessages"));
70 >        _maxMessages = Integer.parseInt(System.getProperty("uk.org.iscream.cms.server.LoggerClass.SimpleSwingLogger.maxMessages"));
71          System.out.println(this.toString() + ": opening window");
72  
73          // set up the Frame
# Line 58 | Line 78 | public class SimpleSwingLogger extends JFrame implemen
78          Box box = Box.createVerticalBox();
79  
80          // create the i-scream logo at the top
81 <        JLabel iscream = new JLabel(new ImageIcon("./uk/ac/ukc/iscream/core/loggers/i-scream.gif"));
82 <        JLabel comment = new JLabel("   I-Scream System Logging Console");
81 >        JLabel iscream = new JLabel(new ImageIcon(getClass().getResource("/uk/org/iscream/cms/server/core/loggers/i-scream.gif")));
82 >        JLabel comment = new JLabel("   i-scream System Logging Console");
83          comment.setForeground( new Color(0, 0, 102));
84          iscream.setBackground(Color.white);
85          comment.setBackground(Color.white);
# Line 87 | Line 107 | public class SimpleSwingLogger extends JFrame implemen
107   //---PUBLIC METHODS---
108  
109      /**
110 <     * The write() method takes a message, formats it using the
111 <     * formatLogLine() method, and then outputs it to the screen
112 <     * using the text area. The source is usually the
113 <     * calling object, referenced by `this'. The method has been
114 <     * made synchronized to avoid it being called by two different
115 <     * objects and the output ending up merged on the screen.
116 <     *
117 <     * @param source A string representation of the calling object.
118 <     * @param verbosity the verbosity of this message
119 <     * @param message The text to be logged.
120 <     */  
110 >         * The write() method takes a line of text, pre-formatted
111 >         * and outputs it using a method defined by the actual
112 >         * implementation. The verbosity is given in case the
113 >         * implementation wishes to utilise it in the layout -
114 >         * eg. a different colour or font.
115 >         *
116 >         * This instance writes the line to a Swing based GUI
117 >         * logger.
118 >         *
119 >         * @param line A line of formatted text to be logged
120 >         * @param verbosity the verbosity of this message
121 >         */  
122      public synchronized void write(String line, int verbosity) {
123          _textArea.insert(line + "\n",0);
124          _textArea.setRows(_maxMessages);
# Line 107 | Line 128 | public class SimpleSwingLogger extends JFrame implemen
128       * Overrides the {@link java.lang.Object#toString() Object.toString()}
129       * method to provide clean logging (every class should have this).
130       *
131 <     * This uses the uk.ac.ukc.iscream.util.FormatName class
131 >     * This uses the uk.org.iscream.cms.util.FormatName class
132       * to format the toString()
133       *
134       * @return the name of this class and its CVS revision
# Line 121 | Line 142 | public class SimpleSwingLogger extends JFrame implemen
142      
143   //---PRIVATE METHODS---
144  
145 +    /**
146 +     * This method is provided if this class wishes to log
147 +     * a message itself.
148 +     *
149 +         * @param source A String representation of the source
150 +         * @param verbosity the verbosity of this message
151 +         * @param message The message to log
152 +         */  
153      private void write(String source, int verbosity, String message) {
154          write(FormatName.formatLogLine(source, verbosity, message), verbosity);
155      }
# Line 155 | Line 184 | public class SimpleSwingLogger extends JFrame implemen
184      
185   //---STATIC ATTRIBUTES---
186      
187 < }
187 > }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines