You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(165) |
Nov
(296) |
Dec
(92) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(84) |
Feb
(20) |
Mar
(20) |
Apr
(42) |
May
(26) |
Jun
(30) |
Jul
(77) |
Aug
(151) |
Sep
(61) |
Oct
(259) |
Nov
(160) |
Dec
(76) |
2007 |
Jan
(159) |
Feb
(155) |
Mar
(183) |
Apr
(113) |
May
(110) |
Jun
(178) |
Jul
(56) |
Aug
(21) |
Sep
(50) |
Oct
(251) |
Nov
(218) |
Dec
(42) |
2008 |
Jan
(14) |
Feb
(37) |
Mar
(60) |
Apr
(77) |
May
(146) |
Jun
(256) |
Jul
(72) |
Aug
(51) |
Sep
(283) |
Oct
(22) |
Nov
(55) |
Dec
(53) |
2009 |
Jan
(56) |
Feb
(45) |
Mar
(56) |
Apr
(98) |
May
(84) |
Jun
(87) |
Jul
(32) |
Aug
(6) |
Sep
(19) |
Oct
|
Nov
(10) |
Dec
(6) |
2010 |
Jan
(2) |
Feb
(6) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(158) |
Nov
(17) |
Dec
(15) |
2012 |
Jan
(9) |
Feb
(3) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
(22) |
Aug
(1) |
Sep
(29) |
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(259) |
Aug
(125) |
Sep
(24) |
Oct
(8) |
Nov
(132) |
Dec
(3) |
2014 |
Jan
(3) |
Feb
(26) |
Mar
(17) |
Apr
(8) |
May
|
Jun
(31) |
Jul
(126) |
Aug
(22) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(21) |
Oct
|
Nov
(1) |
Dec
|
2016 |
Jan
(19) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Taq <ta...@us...> - 2005-11-06 22:14:40
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/base/log In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15205/log Modified Files: DefaultLog.java DefaultLogModule.java Log Message: Logging disabled by default. Index: DefaultLog.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/log/DefaultLog.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DefaultLog.java 18 Oct 2005 13:14:33 -0000 1.5 --- DefaultLog.java 6 Nov 2005 22:14:32 -0000 1.6 *************** *** 65,69 **** * Creates a new log. */ ! public DefaultLog () { // nothing required } --- 65,69 ---- * Creates a new log. */ ! protected DefaultLog () { // nothing required } *************** *** 71,75 **** static { defaultLogInstance = new DefaultLog(); - Log.defineLog(defaultLogInstance); defaultLogInstance.addTarget(DEFAULT_LOG_TARGET); try { --- 71,74 ---- *************** *** 118,121 **** return defaultLogInstance; } ! } --- 117,128 ---- return defaultLogInstance; } ! ! /** ! * Makes this implementation the default instance. ! * ! * @return The default log. ! */ ! public static void installDefaultLog () { ! Log.defineLog(defaultLogInstance); ! } } Index: DefaultLogModule.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/log/DefaultLogModule.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DefaultLogModule.java 18 Oct 2005 13:14:33 -0000 1.5 --- DefaultLogModule.java 6 Nov 2005 22:14:32 -0000 1.6 *************** *** 88,91 **** --- 88,92 ---- (PrintStreamLogTarget.class.getName())) { + DefaultLog.installDefaultLog(); Log.getInstance().addTarget(new PrintStreamLogTarget()); Log.info("Default log target started ... previous log messages could have been ignored."); *************** *** 94,97 **** --- 95,99 ---- ("org.jfree.base.LogAutoInit"))) { + DefaultLog.installDefaultLog(); final LogTarget lt = (LogTarget) ObjectUtilities.loadAndInstantiate (LogConfiguration.getLogTarget(), this.getClass()); |
From: Taq <ta...@us...> - 2005-11-06 22:14:40
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/base In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15205 Modified Files: jcommon.properties Log Message: Logging disabled by default. Index: jcommon.properties =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/jcommon.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** jcommon.properties 2 Oct 2005 10:27:16 -0000 1.4 --- jcommon.properties 6 Nov 2005 22:14:32 -0000 1.5 *************** *** 5,10 **** # # Where to log. Give a classname of a valid LogTarget implementation. ! org.jfree.base.LogTarget=org.jfree.util.PrintStreamLogTarget ! org.jfree.base.LogAutoInit=true # --- 5,14 ---- # # Where to log. Give a classname of a valid LogTarget implementation. ! # If the name is invalid, no logging is done. ! org.jfree.base.LogTarget=*none* ! ! # ! # Do not initialize the logging. ! org.jfree.base.LogAutoInit=false # |
From: David G. <mu...@us...> - 2005-11-03 16:42:27
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8073 Added Files: test.txt Log Message: test --- NEW FILE: test.txt --- hello |
From: David G. <mu...@us...> - 2005-11-03 13:24:52
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24315 Modified Files: ChangeLog Log Message: 2005-11-03 David Gilbert <dav...@ob...> * source/org/jfree/chart/ChartColor.java (createDefaultPaintArray): removed orange color, fix for bug 1328408). Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** ChangeLog 2 Nov 2005 13:33:44 -0000 1.41 --- ChangeLog 3 Nov 2005 13:23:54 -0000 1.42 *************** *** 1,2 **** --- 1,7 ---- + 2005-11-03 David Gilbert <dav...@ob...> + + * source/org/jfree/chart/ChartColor.java + (createDefaultPaintArray): removed orange color, fix for bug 1328408). + 2005-11-02 David Gilbert <dav...@ob...> |
From: David G. <mu...@us...> - 2005-11-03 13:24:52
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/chart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24315/source/org/jfree/chart Modified Files: ChartColor.java Log Message: 2005-11-03 David Gilbert <dav...@ob...> * source/org/jfree/chart/ChartColor.java (createDefaultPaintArray): removed orange color, fix for bug 1328408). Index: ChartColor.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/ChartColor.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ChartColor.java 9 Feb 2005 17:08:08 -0000 1.3 --- ChartColor.java 3 Nov 2005 13:23:54 -0000 1.4 *************** *** 17,23 **** * License for more details. * ! * You should have received a copy of the GNU Lesser General Public License ! * along with this library; if not, write to the Free Software Foundation, ! * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc. --- 17,24 ---- * License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, ! * USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc. *************** *** 27,31 **** * ChartColor.java * --------------- ! * (C) Copyright 2003, 2004, by Cameron Riley and Contributors. * * Original Author: Cameron Riley; --- 28,32 ---- * ChartColor.java * --------------- ! * (C) Copyright 2003-2005, by Cameron Riley and Contributors. * * Original Author: Cameron Riley; *************** *** 38,41 **** --- 39,44 ---- * 23-Jan-2003 : Version 1, contributed by Cameron Riley (DG); * 25-Nov-2004 : Changed first 7 colors to softer shades (DG); + * 03-Nov-2005 : Removed orange color, too close to yellow - see bug + * report 1328408 (DG); * */ *************** *** 153,157 **** new Color(0x55, 0xFF, 0x55), new Color(0xFF, 0xFF, 0x55), - new Color(0xFF, 0xBB, 0x55), new Color(0xFF, 0x55, 0xFF), new Color(0x55, 0xFF, 0xFF), --- 156,159 ---- |
From: David G. <mu...@us...> - 2005-11-03 13:04:22
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14518 Modified Files: Tag: STABLE_1-0-0 ChangeLog Log Message: 2005-11-03 David Gilbert <dav...@ob...> * source/org/jfree/chart/ChartColor.java (createDefaultPaintArray): removed orange color, fix for bug 1328408). Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.1.2.20 retrieving revision 1.1.2.21 diff -C2 -d -r1.1.2.20 -r1.1.2.21 *** ChangeLog 2 Nov 2005 13:20:29 -0000 1.1.2.20 --- ChangeLog 3 Nov 2005 13:04:13 -0000 1.1.2.21 *************** *** 1,2 **** --- 1,7 ---- + 2005-11-03 David Gilbert <dav...@ob...> + + * source/org/jfree/chart/ChartColor.java + (createDefaultPaintArray): removed orange color, fix for bug 1328408). + 02-11-2005 David Gilbert <dav...@ob...> |
From: David G. <mu...@us...> - 2005-11-03 13:04:22
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/chart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14518/source/org/jfree/chart Modified Files: Tag: STABLE_1-0-0 ChartColor.java Log Message: 2005-11-03 David Gilbert <dav...@ob...> * source/org/jfree/chart/ChartColor.java (createDefaultPaintArray): removed orange color, fix for bug 1328408). Index: ChartColor.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/ChartColor.java,v retrieving revision 1.3.2.1 retrieving revision 1.3.2.2 diff -C2 -d -r1.3.2.1 -r1.3.2.2 *** ChartColor.java 25 Oct 2005 16:50:20 -0000 1.3.2.1 --- ChartColor.java 3 Nov 2005 13:04:13 -0000 1.3.2.2 *************** *** 28,32 **** * ChartColor.java * --------------- ! * (C) Copyright 2003, 2004, by Cameron Riley and Contributors. * * Original Author: Cameron Riley; --- 28,32 ---- * ChartColor.java * --------------- ! * (C) Copyright 2003-2005, by Cameron Riley and Contributors. * * Original Author: Cameron Riley; *************** *** 39,42 **** --- 39,44 ---- * 23-Jan-2003 : Version 1, contributed by Cameron Riley (DG); * 25-Nov-2004 : Changed first 7 colors to softer shades (DG); + * 03-Nov-2005 : Removed orange color, too close to yellow - see bug + * report 1328408 (DG); * */ *************** *** 154,158 **** new Color(0x55, 0xFF, 0x55), new Color(0xFF, 0xFF, 0x55), - new Color(0xFF, 0xBB, 0x55), new Color(0xFF, 0x55, 0xFF), new Color(0x55, 0xFF, 0xFF), --- 156,159 ---- |
From: David G. <mu...@us...> - 2005-11-03 10:31:26
|
Update of /cvsroot/jfreechart/jcommon In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1444 Modified Files: README.txt Log Message: Updates including tentative release date. Index: README.txt =================================================================== RCS file: /cvsroot/jfreechart/jcommon/README.txt,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** README.txt 1 Jun 2005 14:23:46 -0000 1.21 --- README.txt 3 Nov 2005 10:31:14 -0000 1.22 *************** *** 1,7 **** ! ************************************************* ! * THE JCOMMON CLASS LIBRARY: Version 1.0.0-rc1 * ! ************************************************* ! 1 June 2005. (C)opyright, 2000-2005, by Object Refinery Limited and Contributors. --- 1,7 ---- ! ******************************************** ! * THE JCOMMON CLASS LIBRARY: Version 1.0.0 * ! ******************************************** ! 4 November 2005. (C)opyright, 2000-2005, by Object Refinery Limited and Contributors. *************** *** 42,45 **** --- 42,47 ---- org.jfree.junit org.jfree.date.junit + org.jfree.io.junit + org.jfree.text.junit org.jfree.ui.junit org.jfree.util.junit *************** *** 59,62 **** --- 61,68 ---- Changes in each version are listed here: + 1.0.0 : (04-Nov-2005) This is the official 1.0.0 release. All future + releases in the 1.0.x series will maintain backward compatibility + with the 1.0.0 API. + 1.0.0-rc1 : (01-Jun-2005) : Update to coincide with JFreeReport 0.8.5-5. JavaDoc update and classloader handling changed. |
From: David G. <mu...@us...> - 2005-11-03 10:30:49
|
Update of /cvsroot/jfreechart/jcommon/ant In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1266/ant Modified Files: build.xml Log Message: Copy across Maven files to ensure build works from distribution. Index: build.xml =================================================================== RCS file: /cvsroot/jfreechart/jcommon/ant/build.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** build.xml 20 Sep 2005 09:04:48 -0000 1.11 --- build.xml 3 Nov 2005 10:30:40 -0000 1.12 *************** *** 206,209 **** --- 206,215 ---- tofile="distribution/${jcommon-xml-jar-file}"/> + <!-- copy across maven xml files --> + <copy file="maven-jcommon-project.xml" + tofile="distribution/maven-jcommon-project.xml"/> + <copy file="maven-jcommon-xml-project.xml" + tofile="distribution/maven-jcommon-xml-project.xml"/> + <!-- copy across junit test jar file --> <copy file="${junit-dir}/${jcommon-junit-jar-file}" |
From: David G. <mu...@us...> - 2005-11-03 09:55:37
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/io In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/io Modified Files: IOUtils.java SerialUtilities.java Log Message: Fixed Checkstyle warnings. Index: SerialUtilities.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/io/SerialUtilities.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** SerialUtilities.java 2 Nov 2005 16:29:35 -0000 1.12 --- SerialUtilities.java 3 Nov 2005 09:55:27 -0000 1.13 *************** *** 322,326 **** while (!hasNext) { final int type = stream.readInt(); ! for(int i = 0; i < 6; i++) { args[i] = stream.readFloat(); } --- 322,326 ---- while (!hasNext) { final int type = stream.readInt(); ! for (int i = 0; i < 6; i++) { args[i] = stream.readFloat(); } Index: IOUtils.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/io/IOUtils.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IOUtils.java 18 Oct 2005 13:16:02 -0000 1.5 --- IOUtils.java 3 Nov 2005 09:55:27 -0000 1.6 *************** *** 154,159 **** /** ! * Compares both name lists, and returns the last common index shared between ! * the two lists. * * @param baseName the name created using the base url. --- 154,159 ---- /** ! * Compares both name lists, and returns the last common index shared ! * between the two lists. * * @param baseName the name created using the base url. *************** *** 179,184 **** * @param url a url * @param baseUrl an other url, that should be compared. ! * @return true, if the urls point to the same host and port and use the same protocol, ! * false otherwise. */ private boolean isSameService(final URL url, final URL baseUrl) { --- 179,184 ---- * @param url a url * @param baseUrl an other url, that should be compared. ! * @return true, if the urls point to the same host and port and use the ! * same protocol, false otherwise. */ private boolean isSameService(final URL url, final URL baseUrl) { *************** *** 199,203 **** * * @param url the to be stripped url ! * @param baseURL the base url, to which the <code>url</code> is relative to. * @return the relative url, or the url unchanged, if there is no relation * beween both URLs. --- 199,204 ---- * * @param url the to be stripped url ! * @param baseURL the base url, to which the <code>url</code> is relative ! * to. * @return the relative url, or the url unchanged, if there is no relation * beween both URLs. *************** *** 233,237 **** if (commonIndex == urlName.size()) { ! // correct the base index if there is some weird mapping detected, // fi. the file url is fully included in the base url: // --- 234,239 ---- if (commonIndex == urlName.size()) { ! // correct the base index if there is some weird mapping ! // detected, // fi. the file url is fully included in the base url: // *************** *** 239,244 **** // file: /file/test // ! // this could be a valid configuration whereever virtual mappings are ! // allowed. commonIndex -= 1; } --- 241,246 ---- // file: /file/test // ! // this could be a valid configuration whereever virtual ! // mappings are allowed. commonIndex -= 1; } *************** *** 259,263 **** /** ! * Returns <code>true</code> if the URL represents a path, and <code>false</code> otherwise. * * @param baseURL the URL. --- 261,266 ---- /** ! * Returns <code>true</code> if the URL represents a path, and ! * <code>false</code> otherwise. * * @param baseURL the URL. *************** *** 337,342 **** * @throws IOException if a IOError occurs. */ ! public void copyStreams(final InputStream in, final OutputStream out, final int buffersize) ! throws IOException { // create a 4kbyte buffer to read the file final byte[] bytes = new byte[buffersize]; --- 340,345 ---- * @throws IOException if a IOError occurs. */ ! public void copyStreams(final InputStream in, final OutputStream out, ! final int buffersize) throws IOException { // create a 4kbyte buffer to read the file final byte[] bytes = new byte[buffersize]; *************** *** 345,349 **** // the zip entry does not know the size of the data int bytesRead = in.read(bytes); ! while (bytesRead > - 1) { out.write(bytes, 0, bytesRead); bytesRead = in.read(bytes); --- 348,352 ---- // the zip entry does not know the size of the data int bytesRead = in.read(bytes); ! while (bytesRead > -1) { out.write(bytes, 0, bytesRead); bytesRead = in.read(bytes); *************** *** 352,357 **** /** ! * Copies the contents of the Reader into the Writer, until the end of the stream ! * has been reached. This method uses a buffer of 4096 kbyte. * * @param in the reader from which to read. --- 355,360 ---- /** ! * Copies the contents of the Reader into the Writer, until the end of the ! * stream has been reached. This method uses a buffer of 4096 kbyte. * * @param in the reader from which to read. *************** *** 365,370 **** /** ! * Copies the contents of the Reader into the Writer, until the end of the stream ! * has been reached. * * @param in the reader from which to read. --- 368,373 ---- /** ! * Copies the contents of the Reader into the Writer, until the end of the ! * stream has been reached. * * @param in the reader from which to read. *************** *** 374,378 **** * @throws IOException if a IOError occurs. */ ! public void copyWriter(final Reader in, final Writer out, final int buffersize) throws IOException { // create a 4kbyte buffer to read the file --- 377,382 ---- * @throws IOException if a IOError occurs. */ ! public void copyWriter(final Reader in, final Writer out, ! final int buffersize) throws IOException { // create a 4kbyte buffer to read the file *************** *** 435,439 **** /** ! * Checks, whether the child directory is a subdirectory of the base directory. * * @param base the base directory. --- 439,444 ---- /** ! * Checks, whether the child directory is a subdirectory of the base ! * directory. * * @param base the base directory. |
From: David G. <mu...@us...> - 2005-11-03 09:55:37
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui/tabbedui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/ui/tabbedui Modified Files: AbstractTabbedUI.java Log Message: Fixed Checkstyle warnings. Index: AbstractTabbedUI.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/tabbedui/AbstractTabbedUI.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AbstractTabbedUI.java 18 Oct 2005 13:23:37 -0000 1.8 --- AbstractTabbedUI.java 3 Nov 2005 09:55:27 -0000 1.9 *************** *** 425,430 **** final RootEditor container = (RootEditor) this.rootEditors.get(i); ! if (container.isActive() && ! (shouldBeActive == false)) { container.setActive(false); } --- 425,429 ---- final RootEditor container = (RootEditor) this.rootEditors.get(i); ! if (container.isActive() && (shouldBeActive == false)) { container.setActive(false); } *************** *** 441,446 **** final RootEditor container = (RootEditor) this.rootEditors.get(i); ! if ((container.isActive() == false) && ! (shouldBeActive == true)) { container.setActive(true); setJMenuBar(createEditorMenubar(container)); --- 440,444 ---- final RootEditor container = (RootEditor) this.rootEditors.get(i); ! if ((container.isActive() == false) && (shouldBeActive == true)) { container.setActive(true); setJMenuBar(createEditorMenubar(container)); |
From: David G. <mu...@us...> - 2005-11-03 09:55:36
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/base/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/base/modules Modified Files: PackageState.java PackageManager.java Log Message: Fixed Checkstyle warnings. Index: PackageState.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/modules/PackageState.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PackageState.java 18 Oct 2005 13:14:50 -0000 1.2 --- PackageState.java 3 Nov 2005 09:55:27 -0000 1.3 *************** *** 56,63 **** --- 56,66 ---- /** A constant defining that the package is new. */ public static final int STATE_NEW = 0; + /** A constant defining that the package has been loaded and configured. */ public static final int STATE_CONFIGURED = 1; + /** A constant defining that the package was initialized and is ready to use. */ public static final int STATE_INITIALIZED = 2; + /** A constant defining that the package produced an error and is not available. */ public static final int STATE_ERROR = -2; *************** *** 92,97 **** throw new NullPointerException("Module must not be null."); } ! if (state != STATE_CONFIGURED && state != STATE_ERROR && ! state != STATE_INITIALIZED && state != STATE_NEW) { throw new IllegalArgumentException("State is not valid"); --- 95,100 ---- throw new NullPointerException("Module must not be null."); } ! if (state != STATE_CONFIGURED && state != STATE_ERROR ! && state != STATE_INITIALIZED && state != STATE_NEW) { throw new IllegalArgumentException("State is not valid"); *************** *** 122,131 **** { Log.warn (new Log.SimpleMessage("Unable to load module classes for ", ! this.module.getName(),":", noClassDef.getMessage())); this.state = STATE_ERROR; } catch (Exception e) { ! Log.warn ("Unable to configure the module " + this.module.getName(), e); this.state = STATE_ERROR; } --- 125,134 ---- { Log.warn (new Log.SimpleMessage("Unable to load module classes for ", ! this.module.getName(), ":", noClassDef.getMessage())); this.state = STATE_ERROR; } catch (Exception e) { ! Log.warn("Unable to configure the module " + this.module.getName(), e); this.state = STATE_ERROR; } *************** *** 178,182 **** { Log.warn (new Log.SimpleMessage("Unable to load module classes for ", ! this.module.getName(),":", noClassDef.getMessage())); this.state = STATE_ERROR; } --- 181,185 ---- { Log.warn (new Log.SimpleMessage("Unable to load module classes for ", ! this.module.getName(), ":", noClassDef.getMessage())); this.state = STATE_ERROR; } Index: PackageManager.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/modules/PackageManager.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PackageManager.java 18 Oct 2005 13:14:50 -0000 1.7 --- PackageManager.java 3 Nov 2005 09:55:27 -0000 1.8 *************** *** 332,337 **** if (acceptVersion(moduleInfo, module) == false) { // module conflict! ! Log.warn("Module " + module.getName() + ": required version: " + moduleInfo + ! ", but found Version: \n" + module); final PackageState state = new PackageState(module, PackageState.STATE_ERROR); dropFailedModule(state); --- 332,337 ---- if (acceptVersion(moduleInfo, module) == false) { // module conflict! ! Log.warn("Module " + module.getName() + ": required version: " ! + moduleInfo + ", but found Version: \n" + module); final PackageState state = new PackageState(module, PackageState.STATE_ERROR); dropFailedModule(state); *************** *** 449,454 **** if (acceptVersion(moduleRequirement.getPatchLevel(), module.getPatchLevel()) > 0) { ! Log.debug("Did not accept patchlevel: " + moduleRequirement.getPatchLevel() + " - " + ! module.getPatchLevel()); return false; } --- 449,455 ---- if (acceptVersion(moduleRequirement.getPatchLevel(), module.getPatchLevel()) > 0) { ! Log.debug("Did not accept patchlevel: " ! + moduleRequirement.getPatchLevel() + " - " ! + module.getPatchLevel()); return false; } |
From: David G. <mu...@us...> - 2005-11-03 09:55:36
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/ui Modified Files: LengthAdjustmentType.java Log Message: Fixed Checkstyle warnings. Index: LengthAdjustmentType.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/LengthAdjustmentType.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** LengthAdjustmentType.java 18 Oct 2005 13:18:34 -0000 1.4 --- LengthAdjustmentType.java 3 Nov 2005 09:55:27 -0000 1.5 *************** *** 136,140 **** } else if (this.equals(LengthAdjustmentType.CONTRACT)) { ! return LengthAdjustmentType.CONTRACT; } return null; --- 136,140 ---- } else if (this.equals(LengthAdjustmentType.CONTRACT)) { ! return LengthAdjustmentType.CONTRACT; } return null; |
From: David G. <mu...@us...> - 2005-11-03 09:55:36
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/util Modified Files: LineBreakIterator.java ExtendedConfigurationWrapper.java SortedConfigurationWriter.java Log Message: Fixed Checkstyle warnings. Index: ExtendedConfigurationWrapper.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/util/ExtendedConfigurationWrapper.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ExtendedConfigurationWrapper.java 18 Oct 2005 13:24:19 -0000 1.4 --- ExtendedConfigurationWrapper.java 3 Nov 2005 09:55:27 -0000 1.5 *************** *** 25,31 **** * in the United States and other countries.] * ! * ------------- * ExtendedConfigurationWrapper.java ! * ------------- * (C)opyright 2002-2005, by Thomas Morgner and Contributors. * --- 25,31 ---- * in the United States and other countries.] * ! * --------------------------------- * ExtendedConfigurationWrapper.java ! * --------------------------------- * (C)opyright 2002-2005, by Thomas Morgner and Contributors. * *************** *** 39,42 **** --- 39,43 ---- * 20-May-2005 : Initial version. */ + package org.jfree.util; *************** *** 129,133 **** return Integer.parseInt(retval); } ! catch(Exception e) { return defaultValue; --- 130,134 ---- return Integer.parseInt(retval); } ! catch (Exception e) { return defaultValue; Index: LineBreakIterator.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/util/LineBreakIterator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LineBreakIterator.java 18 Oct 2005 13:24:19 -0000 1.3 --- LineBreakIterator.java 3 Nov 2005 09:55:26 -0000 1.4 *************** *** 99,103 **** int nextChar = this.position; ! for (; ;) { if (nextChar >= nChars) --- 99,103 ---- int nextChar = this.position; ! for (;;) { if (nextChar >= nChars) Index: SortedConfigurationWriter.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/util/SortedConfigurationWriter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SortedConfigurationWriter.java 18 Oct 2005 13:24:19 -0000 1.3 --- SortedConfigurationWriter.java 3 Nov 2005 09:55:27 -0000 1.4 *************** *** 213,218 **** case ' ': { ! if ((escapeMode != ESCAPE_COMMENT) && ! (x == 0 || escapeMode == ESCAPE_KEY)) { writer.write('\\'); } --- 213,218 ---- case ' ': { ! if ((escapeMode != ESCAPE_COMMENT) ! && (x == 0 || escapeMode == ESCAPE_KEY)) { writer.write('\\'); } |
From: David G. <mu...@us...> - 2005-11-03 09:55:36
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/text In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26002/source/org/jfree/text Modified Files: TextUtilities.java Log Message: Fixed Checkstyle warnings. Index: TextUtilities.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/text/TextUtilities.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** TextUtilities.java 3 Nov 2005 09:26:04 -0000 1.15 --- TextUtilities.java 3 Nov 2005 09:55:27 -0000 1.16 *************** *** 418,422 **** final LineMetrics metrics = f.getLineMetrics(text, frc); final float ascent = metrics.getAscent(); ! result[2] = - ascent; final float halfAscent = ascent / 2.0f; final float descent = metrics.getDescent(); --- 418,422 ---- final LineMetrics metrics = f.getLineMetrics(text, frc); final float ascent = metrics.getAscent(); ! result[2] = -ascent; final float halfAscent = ascent / 2.0f; final float descent = metrics.getDescent(); |
From: David G. <mu...@us...> - 2005-11-03 09:55:09
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/base In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25924/source/org/jfree/base Modified Files: AbstractBoot.java Log Message: Fixed Checkstyle warnings. Index: AbstractBoot.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/base/AbstractBoot.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AbstractBoot.java 18 Oct 2005 13:13:58 -0000 1.12 --- AbstractBoot.java 3 Nov 2005 09:54:59 -0000 1.13 *************** *** 150,154 **** public final void start() { ! synchronized(this) { if (isBootInProgress() || isBootDone()) { return; --- 150,154 ---- public final void start() { ! synchronized (this) { if (isBootInProgress() || isBootDone()) { return; *************** *** 171,175 **** performBoot(); ! synchronized(this) { this.bootInProgress = false; this.bootDone = true; --- 171,175 ---- performBoot(); ! synchronized (this) { this.bootInProgress = false; this.bootDone = true; *************** *** 206,210 **** return (AbstractBoot) m.invoke(null, (Object[]) null); } ! catch(Exception e) { Log.info ("Unable to boot dependent class: " + classname); return null; --- 206,210 ---- return (AbstractBoot) m.invoke(null, (Object[]) null); } ! catch (Exception e) { Log.info ("Unable to boot dependent class: " + classname); return null; |
From: David G. <mu...@us...> - 2005-11-03 09:54:52
|
Update of /cvsroot/jfreechart/jcommon/source/com/keypoint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25857/source/com/keypoint Modified Files: PngEncoder.java Log Message: Fixed Checkstyle warnings. Index: PngEncoder.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/com/keypoint/PngEncoder.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PngEncoder.java 2 Nov 2005 16:28:19 -0000 1.6 --- PngEncoder.java 3 Nov 2005 09:54:44 -0000 1.7 *************** *** 49,53 **** * 19-Oct-2003 : Change private fields to protected fields so that * PngEncoderB can inherit them (JDE) ! * Fixed bug with calculation of nRows */ --- 49,53 ---- * 19-Oct-2003 : Change private fields to protected fields so that * PngEncoderB can inherit them (JDE) ! * Fixed bug with calculation of nRows */ |
From: David G. <mu...@us...> - 2005-11-03 09:30:46
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/xml/attributehandlers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22086/source/org/jfree/xml/attributehandlers Modified Files: StringAttributeHandler.java Log Message: Fixed some FindBugs warnings. Index: StringAttributeHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/xml/attributehandlers/StringAttributeHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StringAttributeHandler.java 18 Oct 2005 13:30:16 -0000 1.2 --- StringAttributeHandler.java 3 Nov 2005 09:30:38 -0000 1.3 *************** *** 65,69 **** final String in = (String) o; if (in != null) { ! return in.toString(); } return null; --- 65,69 ---- final String in = (String) o; if (in != null) { ! return in; } return null; *************** *** 78,83 **** */ public Object toPropertyValue(final String s) { ! return new String(s); // since String is immutable, is it necessary to create ! // a new one? } --- 78,82 ---- */ public Object toPropertyValue(final String s) { ! return s; } |
From: David G. <mu...@us...> - 2005-11-03 09:27:37
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21463/source/org/jfree/ui Modified Files: SerialDateChooserPanel.java Log Message: Fixed minor FindBugs warning. Index: SerialDateChooserPanel.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/SerialDateChooserPanel.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SerialDateChooserPanel.java 18 Oct 2005 13:18:34 -0000 1.4 --- SerialDateChooserPanel.java 3 Nov 2005 09:27:28 -0000 1.5 *************** *** 28,32 **** * SerialDateChooserPanel.java * --------------------------- ! * (C) Copyright 2001-2004, by Object Refinery Limited. * * Original Author: David Gilbert (for Object Refinery Limited); --- 28,32 ---- * SerialDateChooserPanel.java * --------------------------- ! * (C) Copyright 2001-2005, by Object Refinery Limited. * * Original Author: David Gilbert (for Object Refinery Limited); *************** *** 249,253 **** final JButton button = new JButton(""); button.setMargin(new Insets(1, 1, 1, 1)); ! button.setName(new Integer(i).toString()); button.setFont(this.dateFont); button.setFocusPainted(false); --- 249,253 ---- final JButton button = new JButton(""); button.setMargin(new Insets(1, 1, 1, 1)); ! button.setName(Integer.toString(i)); button.setFont(this.dateFont); button.setFocusPainted(false); |
From: David G. <mu...@us...> - 2005-11-03 09:27:17
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21428/source/org/jfree/ui Modified Files: NumberCellRenderer.java Log Message: Fixed minor FindBugs warning. Index: NumberCellRenderer.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/NumberCellRenderer.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** NumberCellRenderer.java 18 Oct 2005 13:18:34 -0000 1.4 --- NumberCellRenderer.java 3 Nov 2005 09:27:09 -0000 1.5 *************** *** 50,54 **** import javax.swing.SwingConstants; import javax.swing.table.DefaultTableCellRenderer; - import javax.swing.table.TableCellRenderer; /** --- 50,53 ---- *************** *** 57,64 **** * @author David Gilbert */ ! public class NumberCellRenderer extends DefaultTableCellRenderer implements TableCellRenderer { /** ! * Default constructor - builds a renderer that right justifies the contents of a table cell. */ public NumberCellRenderer() { --- 56,64 ---- * @author David Gilbert */ ! public class NumberCellRenderer extends DefaultTableCellRenderer { /** ! * Default constructor - builds a renderer that right justifies the ! * contents of a table cell. */ public NumberCellRenderer() { *************** *** 72,77 **** * @param table the table. * @param value the data to be rendered. ! * @param isSelected a boolean that indicates whether or not the cell is selected. ! * @param hasFocus a boolean that indicates whether or not the cell has the focus. * @param row the (zero-based) row index. * @param column the (zero-based) column index. --- 72,79 ---- * @param table the table. * @param value the data to be rendered. ! * @param isSelected a boolean that indicates whether or not the cell is ! * selected. ! * @param hasFocus a boolean that indicates whether or not the cell has ! * the focus. * @param row the (zero-based) row index. * @param column the (zero-based) column index. *************** *** 79,84 **** * @return the component that can render the contents of the cell. */ ! public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, ! final boolean hasFocus, final int row, final int column) { setFont(null); --- 81,87 ---- * @return the component that can render the contents of the cell. */ ! public Component getTableCellRendererComponent(final JTable table, ! final Object value, final boolean isSelected, ! final boolean hasFocus, final int row, final int column) { setFont(null); |
From: David G. <mu...@us...> - 2005-11-03 09:26:58
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21388/source/org/jfree/ui Modified Files: FloatDimension.java Log Message: Fixed minor FindBugs warning. Index: FloatDimension.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/FloatDimension.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FloatDimension.java 18 Oct 2005 13:18:34 -0000 1.3 --- FloatDimension.java 3 Nov 2005 09:26:51 -0000 1.4 *************** *** 53,57 **** */ public class FloatDimension extends Dimension2D ! implements Cloneable, Serializable { /** For serialization. */ --- 53,57 ---- */ public class FloatDimension extends Dimension2D ! implements Serializable { /** For serialization. */ |
From: David G. <mu...@us...> - 2005-11-03 09:26:44
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21356/source/org/jfree/ui Modified Files: DateChooserPanel.java Log Message: Fixed minor FindBugs warning. Index: DateChooserPanel.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/DateChooserPanel.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DateChooserPanel.java 2 Nov 2005 14:10:32 -0000 1.8 --- DateChooserPanel.java 3 Nov 2005 09:26:36 -0000 1.9 *************** *** 283,287 **** final JButton b = new JButton(""); b.setMargin(new Insets(1, 1, 1, 1)); ! b.setName(new Integer(i).toString()); b.setFont(this.dateFont); b.setFocusPainted(false); --- 283,287 ---- final JButton b = new JButton(""); b.setMargin(new Insets(1, 1, 1, 1)); ! b.setName(Integer.toString(i)); b.setFont(this.dateFont); b.setFocusPainted(false); *************** *** 366,370 **** for (int i = 0; i < 42; i++) { final JButton b = this.buttons[i]; ! b.setText(new Integer(c.get(Calendar.DATE)).toString()); b.setBackground(getButtonColor(c)); c.add(Calendar.DATE, 1); --- 366,370 ---- for (int i = 0; i < 42; i++) { final JButton b = this.buttons[i]; ! b.setText(Integer.toString(c.get(Calendar.DATE))); b.setBackground(getButtonColor(c)); c.add(Calendar.DATE, 1); |
From: David G. <mu...@us...> - 2005-11-03 09:26:30
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21305/source/org/jfree/ui Modified Files: DateCellRenderer.java Log Message: Fixed minor FindBugs warning. Index: DateCellRenderer.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/ui/DateCellRenderer.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DateCellRenderer.java 18 Oct 2005 13:18:34 -0000 1.4 --- DateCellRenderer.java 3 Nov 2005 09:26:22 -0000 1.5 *************** *** 49,53 **** import javax.swing.SwingConstants; import javax.swing.table.DefaultTableCellRenderer; - import javax.swing.table.TableCellRenderer; /** --- 49,52 ---- *************** *** 56,60 **** * @author David Gilbert */ ! public class DateCellRenderer extends DefaultTableCellRenderer implements TableCellRenderer { /** The formatter. */ --- 55,59 ---- * @author David Gilbert */ ! public class DateCellRenderer extends DefaultTableCellRenderer { /** The formatter. */ *************** *** 84,89 **** * @param table the table. * @param value the data to be rendered. ! * @param isSelected a boolean that indicates whether or not the cell is selected. ! * @param hasFocus a boolean that indicates whether or not the cell has the focus. * @param row the (zero-based) row index. * @param column the (zero-based) column index. --- 83,90 ---- * @param table the table. * @param value the data to be rendered. ! * @param isSelected a boolean that indicates whether or not the cell is ! * selected. ! * @param hasFocus a boolean that indicates whether or not the cell has ! * the focus. * @param row the (zero-based) row index. * @param column the (zero-based) column index. *************** *** 91,96 **** * @return the component that can render the contents of the cell. */ ! public Component getTableCellRendererComponent(final JTable table, final Object value, final boolean isSelected, ! final boolean hasFocus, final int row, final int column) { setFont(null); --- 92,98 ---- * @return the component that can render the contents of the cell. */ ! public Component getTableCellRendererComponent(final JTable table, ! final Object value, final boolean isSelected, ! final boolean hasFocus, final int row, final int column) { setFont(null); |
From: David G. <mu...@us...> - 2005-11-03 09:26:12
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/text In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21256/source/org/jfree/text Modified Files: TextUtilities.java Log Message: Fixed minor FindBugs warning. Index: TextUtilities.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/text/TextUtilities.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TextUtilities.java 18 Oct 2005 13:17:16 -0000 1.14 --- TextUtilities.java 3 Nov 2005 09:26:04 -0000 1.15 *************** *** 103,107 **** isJava14 = true; } ! catch(Exception e) { isJava14 = false; } --- 103,107 ---- isJava14 = true; } ! catch (ClassNotFoundException e) { isJava14 = false; } |
From: David G. <mu...@us...> - 2005-11-03 09:25:47
|
Update of /cvsroot/jfreechart/jcommon/source/org/jfree/date In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21185/source/org/jfree/date Modified Files: SpreadsheetDate.java Log Message: Fixed minor FindBugs warning. Index: SpreadsheetDate.java =================================================================== RCS file: /cvsroot/jfreechart/jcommon/source/org/jfree/date/SpreadsheetDate.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SpreadsheetDate.java 18 Oct 2005 13:15:08 -0000 1.7 --- SpreadsheetDate.java 3 Nov 2005 09:25:39 -0000 1.8 *************** *** 55,59 **** package org.jfree.date; - import java.io.Serializable; import java.util.Calendar; import java.util.Date; --- 55,58 ---- *************** *** 79,83 **** * @author David Gilbert */ ! public class SpreadsheetDate extends SerialDate implements Serializable { /** For serialization. */ --- 78,82 ---- * @author David Gilbert */ ! public class SpreadsheetDate extends SerialDate { /** For serialization. */ |