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: David G. <mu...@us...> - 2005-10-27 14:04:36
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/axis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv879/source/org/jfree/chart/axis Removed Files: SymbolicAxis.java Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/chart/axis/SymbolicAxis.java: removed this file, it has been renamed SymbolAxis.java. --- SymbolicAxis.java DELETED --- |
From: David G. <mu...@us...> - 2005-10-27 13:44:46
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28827 Modified Files: ChangeLog Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/chart/axis/NumberTickUnit.java (NumberTickUnit): change NullPointerException to IllegalArgumentException for consistency. Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ChangeLog 27 Oct 2005 13:07:20 -0000 1.15 --- ChangeLog 27 Oct 2005 13:44:37 -0000 1.16 *************** *** 1,4 **** --- 1,10 ---- 27-10-2005 David Gilbert <dav...@ob...> + * source/org/jfree/chart/axis/NumberTickUnit.java + (NumberTickUnit): change NullPointerException to + IllegalArgumentException for consistency. + + 27-10-2005 David Gilbert <dav...@ob...> + * source/org/jfree/chart/title/junit/LegendGraphicTests.java: New file, |
From: David G. <mu...@us...> - 2005-10-27 13:44:46
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/axis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28827/source/org/jfree/chart/axis Modified Files: NumberTickUnit.java Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/chart/axis/NumberTickUnit.java (NumberTickUnit): change NullPointerException to IllegalArgumentException for consistency. Index: NumberTickUnit.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/axis/NumberTickUnit.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NumberTickUnit.java 3 Sep 2005 09:02:30 -0000 1.5 --- NumberTickUnit.java 27 Oct 2005 13:44:38 -0000 1.6 *************** *** 43,46 **** --- 43,47 ---- * 26-Mar-2003 : Implemented Serializable (DG); * 05-Jul-2005 : Added equals() implementation (DG); + * 05-Sep-2005 : Implemented hashCode(), thanks to Thomas Morgner (DG); * */ *************** *** 75,84 **** * * @param size the size of the tick unit. ! * @param formatter a number formatter for the tick unit. */ public NumberTickUnit(double size, NumberFormat formatter) { super(size); if (formatter == null) { ! throw new NullPointerException("NumberTickUnit: Formatter must not be null."); } this.formatter = formatter; --- 76,86 ---- * * @param size the size of the tick unit. ! * @param formatter a number formatter for the tick unit (<code>null</code> ! * not permitted). */ public NumberTickUnit(double size, NumberFormat formatter) { super(size); if (formatter == null) { ! throw new IllegalArgumentException("Null 'formatter' argument."); } this.formatter = formatter; *************** *** 120,123 **** --- 122,130 ---- } + /** + * Returns a hash code for this instance. + * + * @return A hash code. + */ public int hashCode() { int result = super.hashCode(); *************** *** 125,127 **** --- 132,135 ---- return result; } + } \ No newline at end of file |
From: David G. <mu...@us...> - 2005-10-27 13:07:32
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19834 Modified Files: ChangeLog Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/chart/title/junit/LegendGraphicTests.java: New file, * source/org/jfree/chart/title/junit/TitlePackageTests.java: (suite): add LegendGraphicTests. ---------------------------------------------------------------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** ChangeLog 27 Oct 2005 12:55:32 -0000 1.14 --- ChangeLog 27 Oct 2005 13:07:20 -0000 1.15 *************** *** 1,4 **** --- 1,11 ---- 27-10-2005 David Gilbert <dav...@ob...> + * source/org/jfree/chart/title/junit/LegendGraphicTests.java: + New file, + * source/org/jfree/chart/title/junit/TitlePackageTests.java: + (suite): add LegendGraphicTests. + + 27-10-2005 David Gilbert <dav...@ob...> + * source/org/jfree/data/general/junit/DatasetUtilitiesTests.java (testIteratorXYRangeBounds2): new test. |
From: David G. <mu...@us...> - 2005-10-27 13:07:32
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/title/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19834/source/org/jfree/chart/title/junit Modified Files: TitlePackageTests.java Added Files: LegendGraphicTests.java Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/chart/title/junit/LegendGraphicTests.java: New file, * source/org/jfree/chart/title/junit/TitlePackageTests.java: (suite): add LegendGraphicTests. ---------------------------------------------------------------------- --- NEW FILE: LegendGraphicTests.java --- /* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. * * Project Info: http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * 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. * in the United States and other countries.] * * ----------------------- * LegendGraphicTests.java * ----------------------- * (C) Copyright 2005, by Object Refinery Limited and Contributors. * * Original Author: David Gilbert (for Object Refinery Limited); * Contributor(s): -; * * $Id: LegendGraphicTests.java,v 1.2 2005/10/27 13:07:20 mungady Exp $ * * Changes * ------- * 01-Sep-2005 : Version 1 (DG); * */ package org.jfree.chart.title.junit; import java.awt.BasicStroke; import java.awt.Color; import java.awt.Stroke; import java.awt.geom.Line2D; import java.awt.geom.Rectangle2D; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import org.jfree.chart.title.LegendGraphic; import org.jfree.ui.RectangleAnchor; /** * Tests for the {@link LegendGraphic} class. */ public class LegendGraphicTests extends TestCase { /** * Returns the tests as a test suite. * * @return The test suite. */ public static Test suite() { return new TestSuite(LegendGraphicTests.class); } /** * Constructs a new set of tests. * * @param name the name of the tests. */ public LegendGraphicTests(String name) { super(name); } /** * Check that the equals() method distinguishes all fields. */ public void testEquals() { LegendGraphic g1 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); LegendGraphic g2 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); assertEquals(g1, g2); assertEquals(g2, g1); // shapeVisible g1.setShapeVisible(!g1.isShapeVisible()); assertFalse(g1.equals(g2)); g2.setShapeVisible(!g2.isShapeVisible()); assertTrue(g1.equals(g2)); // shape g1.setShape(new Rectangle2D.Double(4.0, 3.0, 2.0, 1.0)); assertFalse(g1.equals(g2)); g2.setShape(new Rectangle2D.Double(4.0, 3.0, 2.0, 1.0)); assertTrue(g1.equals(g2)); // shapeFilled g1.setShapeFilled(!g1.isShapeFilled()); assertFalse(g1.equals(g2)); g2.setShapeFilled(!g2.isShapeFilled()); assertTrue(g1.equals(g2)); // fillPaint g1.setFillPaint(Color.green); assertFalse(g1.equals(g2)); g2.setFillPaint(Color.green); assertTrue(g1.equals(g2)); // shapeOutlineVisible g1.setShapeOutlineVisible(!g1.isShapeOutlineVisible()); assertFalse(g1.equals(g2)); g2.setShapeOutlineVisible(!g2.isShapeOutlineVisible()); assertTrue(g1.equals(g2)); // outlinePaint g1.setOutlinePaint(Color.green); assertFalse(g1.equals(g2)); g2.setOutlinePaint(Color.green); assertTrue(g1.equals(g2)); // outlineStroke g1.setOutlineStroke(new BasicStroke(1.23f)); assertFalse(g1.equals(g2)); g2.setOutlineStroke(new BasicStroke(1.23f)); assertTrue(g1.equals(g2)); // shapeAnchor g1.setShapeAnchor(RectangleAnchor.BOTTOM_RIGHT); assertFalse(g1.equals(g2)); g2.setShapeAnchor(RectangleAnchor.BOTTOM_RIGHT); assertTrue(g1.equals(g2)); // shapeLocation g1.setShapeLocation(RectangleAnchor.BOTTOM_RIGHT); assertFalse(g1.equals(g2)); g2.setShapeLocation(RectangleAnchor.BOTTOM_RIGHT); assertTrue(g1.equals(g2)); // lineVisible g1.setLineVisible(!g1.isLineVisible()); assertFalse(g1.equals(g2)); g2.setLineVisible(!g2.isLineVisible()); assertTrue(g1.equals(g2)); // line g1.setLine(new Line2D.Double(1.0, 2.0, 3.0, 4.0)); assertFalse(g1.equals(g2)); g2.setLine(new Line2D.Double(1.0, 2.0, 3.0, 4.0)); assertTrue(g1.equals(g2)); // linePaint g1.setLinePaint(Color.green); assertFalse(g1.equals(g2)); g2.setLinePaint(Color.green); assertTrue(g1.equals(g2)); // lineStroke g1.setLineStroke(new BasicStroke(1.23f)); assertFalse(g1.equals(g2)); g2.setLineStroke(new BasicStroke(1.23f)); assertTrue(g1.equals(g2)); } /** * Two objects that are equal are required to return the same hashCode. */ public void testHashcode() { LegendGraphic g1 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); LegendGraphic g2 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); assertTrue(g1.equals(g2)); int h1 = g1.hashCode(); int h2 = g2.hashCode(); assertEquals(h1, h2); } /** * Confirm that cloning works. */ public void testCloning() { LegendGraphic g1 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); LegendGraphic g2 = null; try { g2 = (LegendGraphic) g1.clone(); } catch (CloneNotSupportedException e) { System.err.println("Failed to clone."); } assertTrue(g1 != g2); assertTrue(g1.getClass() == g2.getClass()); assertTrue(g1.equals(g2)); } /** * Serialize an instance, restore it, and check for equality. */ public void testSerialization() { Stroke s = new BasicStroke(1.23f); LegendGraphic g1 = new LegendGraphic(new Rectangle2D.Double(1.0, 2.0, 3.0, 4.0), Color.black); g1.setOutlineStroke(s); LegendGraphic g2 = null; try { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); ObjectOutput out = new ObjectOutputStream(buffer); out.writeObject(g1); out.close(); ObjectInput in = new ObjectInputStream( new ByteArrayInputStream(buffer.toByteArray()) ); g2 = (LegendGraphic) in.readObject(); in.close(); } catch (Exception e) { System.out.println(e.toString()); } assertTrue(g1.equals(g2)); } } Index: TitlePackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/chart/title/junit/TitlePackageTests.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TitlePackageTests.java 27 Jun 2005 11:17:03 -0000 1.6 --- TitlePackageTests.java 27 Oct 2005 13:07:20 -0000 1.7 *************** *** 38,41 **** --- 38,42 ---- * 17-Feb-2004 : Version 1 (DG); * 19-Jan-2005 : Added main() method to run JUnit in text mode (DG); + * 05-Sep-2005 : Added tests for LegendGraphic class (DG); * */ *************** *** 65,68 **** --- 66,70 ---- suite.addTestSuite(DateTitleTests.class); suite.addTestSuite(ImageTitleTests.class); + suite.addTestSuite(LegendGraphicTests.class); suite.addTestSuite(LegendTitleTests.class); suite.addTestSuite(TextTitleTests.class); |
From: David G. <mu...@us...> - 2005-10-27 12:55:44
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17308 Modified Files: ChangeLog Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/data/general/junit/DatasetUtilitiesTests.java (testIteratorXYRangeBounds2): new test. ---------------------------------------------------------------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ChangeLog 25 Oct 2005 15:48:57 -0000 1.13 --- ChangeLog 27 Oct 2005 12:55:32 -0000 1.14 *************** *** 1,2 **** --- 1,7 ---- + 27-10-2005 David Gilbert <dav...@ob...> + + * source/org/jfree/data/general/junit/DatasetUtilitiesTests.java + (testIteratorXYRangeBounds2): new test. + 25-10-2005 David Gilbert <dav...@ob...> |
From: David G. <mu...@us...> - 2005-10-27 12:55:43
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17308/source/org/jfree/data/general/junit Modified Files: DatasetUtilitiesTests.java Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/data/general/junit/DatasetUtilitiesTests.java (testIteratorXYRangeBounds2): new test. ---------------------------------------------------------------------- Index: DatasetUtilitiesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DatasetUtilitiesTests.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DatasetUtilitiesTests.java 4 Mar 2005 11:50:11 -0000 1.11 --- DatasetUtilitiesTests.java 27 Oct 2005 12:55:32 -0000 1.12 *************** *** 175,178 **** --- 175,192 ---- /** + * Check the range returned when a series contains a null value. + */ + public void testIterateXYRangeBounds2() { + XYSeries s1 = new XYSeries("S1"); + s1.add(1.0, 1.1); + s1.add(2.0, null); + s1.add(3.0, 3.3); + XYSeriesCollection dataset = new XYSeriesCollection(s1); + Range r = DatasetUtilities.iterateXYRangeBounds(dataset); + assertEquals(1.1, r.getLowerBound(), EPSILON); + assertEquals(3.3, r.getUpperBound(), EPSILON); + } + + /** * Some tests for the findMinimumDomainValue() method. */ |
From: David G. <mu...@us...> - 2005-10-27 12:46:55
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15632/source/org/jfree/data/general/junit Modified Files: Tag: STABLE_1-0-0 DatasetUtilitiesTests.java Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/data/general/junit/DatasetUtilities.java (testIterateXYRangeBounds2): added API doc comment. ---------------------------------------------------------------------- Index: DatasetUtilitiesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DatasetUtilitiesTests.java,v retrieving revision 1.11.2.2 retrieving revision 1.11.2.3 diff -C2 -d -r1.11.2.2 -r1.11.2.3 *** DatasetUtilitiesTests.java 25 Oct 2005 21:33:26 -0000 1.11.2.2 --- DatasetUtilitiesTests.java 27 Oct 2005 12:46:43 -0000 1.11.2.3 *************** *** 175,178 **** --- 175,181 ---- } + /** + * Check the range returned when a series contains a null value. + */ public void testIterateXYRangeBounds2() { XYSeries s1 = new XYSeries("S1"); |
From: David G. <mu...@us...> - 2005-10-27 12:46:51
|
Update of /cvsroot/jfreechart/jfreechart In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15632 Modified Files: Tag: STABLE_1-0-0 ChangeLog Log Message: 27-10-2005 David Gilbert <dav...@ob...> * source/org/jfree/data/general/junit/DatasetUtilities.java (testIterateXYRangeBounds2): added API doc comment. ---------------------------------------------------------------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/ChangeLog,v retrieving revision 1.1.2.13 retrieving revision 1.1.2.14 diff -C2 -d -r1.1.2.13 -r1.1.2.14 *** ChangeLog 25 Oct 2005 15:25:36 -0000 1.1.2.13 --- ChangeLog 27 Oct 2005 12:46:43 -0000 1.1.2.14 *************** *** 1,2 **** --- 1,7 ---- + 27-10-2005 David Gilbert <dav...@ob...> + + * source/org/jfree/data/general/junit/DatasetUtilities.java + (testIterateXYRangeBounds2): added API doc comment. + 25-10-2005 David Gilbert <dav...@ob...> |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2518/source/org/jfree/data/xy/junit Modified Files: Tag: STABLE_1-0-0 DefaultOHLCDatasetTests.java XYSeriesTests.java DefaultTableXYDatasetTests.java CategoryTableXYDatasetTests.java DataXYPackageTests.java MatrixSeriesTests.java XYSeriesCollectionTests.java TableXYDatasetTests.java OHLCDataItemTests.java XYDataItemTests.java IntervalXYDelegateTests.java Log Message: Updated FSF address. Index: DefaultTableXYDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/DefaultTableXYDatasetTests.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 *** DefaultTableXYDatasetTests.java 6 Oct 2005 11:17:27 -0000 1.3.2.1 --- DefaultTableXYDatasetTests.java 25 Oct 2005 21:37:07 -0000 1.3.2.2 *************** *** 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. Index: DefaultOHLCDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/DefaultOHLCDatasetTests.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** DefaultOHLCDatasetTests.java 6 Jul 2005 13:51:43 -0000 1.1.2.1 --- DefaultOHLCDatasetTests.java 25 Oct 2005 21:37:07 -0000 1.1.2.2 *************** *** 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. Index: CategoryTableXYDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/CategoryTableXYDatasetTests.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** CategoryTableXYDatasetTests.java 6 Oct 2005 11:17:27 -0000 1.1.2.1 --- CategoryTableXYDatasetTests.java 25 Oct 2005 21:37:07 -0000 1.1.2.2 *************** *** 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. Index: XYDataItemTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/XYDataItemTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** XYDataItemTests.java 15 Mar 2005 12:43:47 -0000 1.3 --- XYDataItemTests.java 25 Oct 2005 21:37:07 -0000 1.3.2.1 *************** *** 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. Index: TableXYDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/TableXYDatasetTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TableXYDatasetTests.java 15 Mar 2005 16:34:36 -0000 1.3 --- TableXYDatasetTests.java 25 Oct 2005 21:37:07 -0000 1.3.2.1 *************** *** 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. Index: MatrixSeriesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/MatrixSeriesTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MatrixSeriesTests.java 19 May 2005 10:35:27 -0000 1.5 --- MatrixSeriesTests.java 25 Oct 2005 21:37:07 -0000 1.5.2.1 *************** *** 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. Index: IntervalXYDelegateTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/IntervalXYDelegateTests.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** IntervalXYDelegateTests.java 6 Oct 2005 11:17:27 -0000 1.1.2.1 --- IntervalXYDelegateTests.java 25 Oct 2005 21:37:07 -0000 1.1.2.2 *************** *** 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. Index: XYSeriesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/XYSeriesTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** XYSeriesTests.java 20 May 2005 08:20:05 -0000 1.5 --- XYSeriesTests.java 25 Oct 2005 21:37:07 -0000 1.5.2.1 *************** *** 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. Index: XYSeriesCollectionTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/XYSeriesCollectionTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** XYSeriesCollectionTests.java 28 Mar 2005 07:12:16 -0000 1.5 --- XYSeriesCollectionTests.java 25 Oct 2005 21:37:07 -0000 1.5.2.1 *************** *** 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. Index: OHLCDataItemTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/OHLCDataItemTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** OHLCDataItemTests.java 29 Apr 2005 21:23:35 -0000 1.1 --- OHLCDataItemTests.java 25 Oct 2005 21:37:07 -0000 1.1.2.1 *************** *** 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. Index: DataXYPackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/junit/DataXYPackageTests.java,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -C2 -d -r1.5.2.1 -r1.5.2.2 *** DataXYPackageTests.java 6 Oct 2005 11:17:27 -0000 1.5.2.1 --- DataXYPackageTests.java 25 Oct 2005 21:37:07 -0000 1.5.2.2 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2390/source/org/jfree/data/xy Modified Files: Tag: STABLE_1-0-0 IntervalXYDataset.java MatrixSeries.java XYBarDataset.java XYSeriesCollection.java OHLCDataset.java XYSeries.java DefaultTableXYDataset.java TableXYDataset.java XYDataset.java AbstractXYDataset.java DefaultHighLowDataset.java MatrixSeriesCollection.java IntervalXYDelegate.java DefaultOHLCDataset.java YisSymbolic.java DefaultWindDataset.java SignalsDataset.java WindDataset.java AbstractIntervalXYDataset.java OHLCDataItem.java IntervalXYZDataset.java XYZDataset.java AbstractXYZDataset.java XYDatasetTableModel.java NormalizedMatrixSeries.java CategoryTableXYDataset.java XisSymbolic.java XYDataItem.java Log Message: Updated FSF address. Index: XYSeries.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYSeries.java,v retrieving revision 1.13 retrieving revision 1.13.2.1 diff -C2 -d -r1.13 -r1.13.2.1 *** XYSeries.java 20 May 2005 08:20:03 -0000 1.13 --- XYSeries.java 25 Oct 2005 21:36:51 -0000 1.13.2.1 *************** *** 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. Index: WindDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/WindDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** WindDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- WindDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: XYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** XYDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- XYDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: DefaultHighLowDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/DefaultHighLowDataset.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** DefaultHighLowDataset.java 20 May 2005 08:20:03 -0000 1.6 --- DefaultHighLowDataset.java 25 Oct 2005 21:36:51 -0000 1.6.2.1 *************** *** 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. Index: AbstractXYZDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/AbstractXYZDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** AbstractXYZDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- AbstractXYZDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: DefaultOHLCDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/DefaultOHLCDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DefaultOHLCDataset.java 20 May 2005 08:20:03 -0000 1.5 --- DefaultOHLCDataset.java 25 Oct 2005 21:36:51 -0000 1.5.2.1 *************** *** 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. Index: MatrixSeries.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/MatrixSeries.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MatrixSeries.java 19 May 2005 10:35:27 -0000 1.5 --- MatrixSeries.java 25 Oct 2005 21:36:51 -0000 1.5.2.1 *************** *** 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. Index: NormalizedMatrixSeries.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/NormalizedMatrixSeries.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** NormalizedMatrixSeries.java 15 Mar 2005 12:42:44 -0000 1.3 --- NormalizedMatrixSeries.java 25 Oct 2005 21:36:51 -0000 1.3.2.1 *************** *** 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. Index: OHLCDataItem.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/OHLCDataItem.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** OHLCDataItem.java 19 May 2005 10:35:27 -0000 1.6 --- OHLCDataItem.java 25 Oct 2005 21:36:51 -0000 1.6.2.1 *************** *** 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. Index: XYBarDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYBarDataset.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** XYBarDataset.java 20 May 2005 08:20:03 -0000 1.4 --- XYBarDataset.java 25 Oct 2005 21:36:51 -0000 1.4.2.1 *************** *** 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. Index: CategoryTableXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/CategoryTableXYDataset.java,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -C2 -d -r1.7.2.1 -r1.7.2.2 *** CategoryTableXYDataset.java 6 Oct 2005 11:17:27 -0000 1.7.2.1 --- CategoryTableXYDataset.java 25 Oct 2005 21:36:51 -0000 1.7.2.2 *************** *** 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. Index: XYDatasetTableModel.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYDatasetTableModel.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** XYDatasetTableModel.java 20 May 2005 08:20:03 -0000 1.7 --- XYDatasetTableModel.java 25 Oct 2005 21:36:51 -0000 1.7.2.1 *************** *** 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. Index: DefaultWindDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/DefaultWindDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DefaultWindDataset.java 20 May 2005 08:20:03 -0000 1.5 --- DefaultWindDataset.java 25 Oct 2005 21:36:51 -0000 1.5.2.1 *************** *** 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. Index: DefaultTableXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/DefaultTableXYDataset.java,v retrieving revision 1.12.2.1 retrieving revision 1.12.2.2 diff -C2 -d -r1.12.2.1 -r1.12.2.2 *** DefaultTableXYDataset.java 6 Oct 2005 11:17:27 -0000 1.12.2.1 --- DefaultTableXYDataset.java 25 Oct 2005 21:36:51 -0000 1.12.2.2 *************** *** 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. Index: YisSymbolic.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/YisSymbolic.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** YisSymbolic.java 15 Mar 2005 12:42:44 -0000 1.2 --- YisSymbolic.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: IntervalXYDelegate.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/IntervalXYDelegate.java,v retrieving revision 1.10.2.1 retrieving revision 1.10.2.2 diff -C2 -d -r1.10.2.1 -r1.10.2.2 *** IntervalXYDelegate.java 6 Oct 2005 11:17:27 -0000 1.10.2.1 --- IntervalXYDelegate.java 25 Oct 2005 21:36:51 -0000 1.10.2.2 *************** *** 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. Index: XYDataItem.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYDataItem.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** XYDataItem.java 19 May 2005 10:35:26 -0000 1.6 --- XYDataItem.java 25 Oct 2005 21:36:51 -0000 1.6.2.1 *************** *** 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. Index: MatrixSeriesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/MatrixSeriesCollection.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** MatrixSeriesCollection.java 20 May 2005 08:20:03 -0000 1.7 --- MatrixSeriesCollection.java 25 Oct 2005 21:36:51 -0000 1.7.2.1 *************** *** 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. Index: TableXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/TableXYDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** TableXYDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- TableXYDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: XYSeriesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYSeriesCollection.java,v retrieving revision 1.12.2.1 retrieving revision 1.12.2.2 diff -C2 -d -r1.12.2.1 -r1.12.2.2 *** XYSeriesCollection.java 6 Oct 2005 11:17:27 -0000 1.12.2.1 --- XYSeriesCollection.java 25 Oct 2005 21:36:51 -0000 1.12.2.2 *************** *** 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. Index: IntervalXYZDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/IntervalXYZDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** IntervalXYZDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- IntervalXYZDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: SignalsDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/SignalsDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** SignalsDataset.java 28 Mar 2005 19:44:01 -0000 1.3 --- SignalsDataset.java 25 Oct 2005 21:36:51 -0000 1.3.2.1 *************** *** 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. Index: AbstractXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/AbstractXYDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** AbstractXYDataset.java 28 Jan 2005 14:10:03 -0000 1.2 --- AbstractXYDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: AbstractIntervalXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/AbstractIntervalXYDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** AbstractIntervalXYDataset.java 11 Mar 2005 15:20:30 -0000 1.3 --- AbstractIntervalXYDataset.java 25 Oct 2005 21:36:51 -0000 1.3.2.1 *************** *** 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. Index: XisSymbolic.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XisSymbolic.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** XisSymbolic.java 15 Mar 2005 12:42:44 -0000 1.2 --- XisSymbolic.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: XYZDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/XYZDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** XYZDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- XYZDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. Index: OHLCDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/OHLCDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** OHLCDataset.java 15 Mar 2005 12:42:44 -0000 1.3 --- OHLCDataset.java 25 Oct 2005 21:36:51 -0000 1.3.2.1 *************** *** 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. Index: IntervalXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xy/IntervalXYDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** IntervalXYDataset.java 15 Mar 2005 12:42:44 -0000 1.2 --- IntervalXYDataset.java 25 Oct 2005 21:36:51 -0000 1.2.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:36:22
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2261/source/org/jfree/data/xml Modified Files: Tag: STABLE_1-0-0 PieDatasetHandler.java ItemHandler.java RootHandler.java DatasetReader.java CategoryDatasetHandler.java CategorySeriesHandler.java DatasetTags.java ValueHandler.java KeyHandler.java Log Message: Updated FSF address. Index: ValueHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/ValueHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** ValueHandler.java 13 Feb 2005 22:08:39 -0000 1.3 --- ValueHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. Index: CategoryDatasetHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/CategoryDatasetHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** CategoryDatasetHandler.java 15 Mar 2005 17:23:43 -0000 1.3 --- CategoryDatasetHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. Index: PieDatasetHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/PieDatasetHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** PieDatasetHandler.java 13 Feb 2005 22:07:05 -0000 1.3 --- PieDatasetHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. Index: DatasetReader.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/DatasetReader.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** DatasetReader.java 15 Mar 2005 17:23:43 -0000 1.4 --- DatasetReader.java 25 Oct 2005 21:36:10 -0000 1.4.2.1 *************** *** 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. Index: KeyHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/KeyHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** KeyHandler.java 15 Mar 2005 17:23:43 -0000 1.3 --- KeyHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. Index: CategorySeriesHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/CategorySeriesHandler.java,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -d -r1.4.2.1 -r1.4.2.2 *** CategorySeriesHandler.java 29 Jul 2005 10:47:00 -0000 1.4.2.1 --- CategorySeriesHandler.java 25 Oct 2005 21:36:10 -0000 1.4.2.2 *************** *** 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. Index: DatasetTags.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/DatasetTags.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DatasetTags.java 13 Feb 2005 22:06:17 -0000 1.2 --- DatasetTags.java 25 Oct 2005 21:36:10 -0000 1.2.2.1 *************** *** 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. Index: RootHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/RootHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** RootHandler.java 13 Feb 2005 22:07:34 -0000 1.3 --- RootHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. Index: ItemHandler.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/xml/ItemHandler.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** ItemHandler.java 13 Feb 2005 22:06:48 -0000 1.3 --- ItemHandler.java 25 Oct 2005 21:36:10 -0000 1.3.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2066/source/org/jfree/data/time/junit Modified Files: Tag: STABLE_1-0-0 WeekTests.java FixedMillisecondTests.java MillisecondTests.java MonthTests.java TimePeriodValuesCollectionTests.java TimePeriodAnchorTests.java DayTests.java SecondTests.java DateRangeTests.java TimeTableXYDatasetTests.java SimpleTimePeriodTests.java TimeSeriesCollectionTests.java QuarterTests.java TimePeriodValuesTests.java YearTests.java TimePeriodValueTests.java MinuteTests.java TimeSeriesDataItemTests.java MovingAverageTests.java DataTimePackageTests.java HourTests.java TimeSeriesTests.java Log Message: Updated FSF address. Index: HourTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/HourTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** HourTests.java 11 Mar 2005 14:37:24 -0000 1.5 --- HourTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: QuarterTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/QuarterTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** QuarterTests.java 11 Mar 2005 14:37:23 -0000 1.5 --- QuarterTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: TimeTableXYDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimeTableXYDatasetTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** TimeTableXYDatasetTests.java 11 Mar 2005 14:37:24 -0000 1.4 --- TimeTableXYDatasetTests.java 25 Oct 2005 21:35:47 -0000 1.4.2.1 *************** *** 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. Index: TimeSeriesDataItemTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimeSeriesDataItemTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimeSeriesDataItemTests.java 11 Mar 2005 14:37:23 -0000 1.3 --- TimeSeriesDataItemTests.java 25 Oct 2005 21:35:47 -0000 1.3.2.1 *************** *** 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. Index: TimePeriodValueTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimePeriodValueTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimePeriodValueTests.java 11 Mar 2005 14:37:24 -0000 1.3 --- TimePeriodValueTests.java 25 Oct 2005 21:35:47 -0000 1.3.2.1 *************** *** 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. Index: MovingAverageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/MovingAverageTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MovingAverageTests.java 11 Mar 2005 14:37:24 -0000 1.5 --- MovingAverageTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: DataTimePackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/DataTimePackageTests.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** DataTimePackageTests.java 11 Mar 2005 15:21:34 -0000 1.6 --- DataTimePackageTests.java 25 Oct 2005 21:35:47 -0000 1.6.2.1 *************** *** 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. Index: FixedMillisecondTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/FixedMillisecondTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** FixedMillisecondTests.java 11 Mar 2005 14:37:23 -0000 1.3 --- FixedMillisecondTests.java 25 Oct 2005 21:35:47 -0000 1.3.2.1 *************** *** 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. Index: TimePeriodAnchorTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimePeriodAnchorTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimePeriodAnchorTests.java 11 Mar 2005 14:37:23 -0000 1.3 --- TimePeriodAnchorTests.java 25 Oct 2005 21:35:47 -0000 1.3.2.1 *************** *** 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. Index: TimePeriodValuesCollectionTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimePeriodValuesCollectionTests.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** TimePeriodValuesCollectionTests.java 15 Mar 2005 16:36:56 -0000 1.2 --- TimePeriodValuesCollectionTests.java 25 Oct 2005 21:35:47 -0000 1.2.2.1 *************** *** 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. Index: SecondTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/SecondTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SecondTests.java 11 Mar 2005 14:37:23 -0000 1.4 --- SecondTests.java 25 Oct 2005 21:35:47 -0000 1.4.2.1 *************** *** 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. Index: DateRangeTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/DateRangeTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DateRangeTests.java 11 Mar 2005 14:37:23 -0000 1.3 --- DateRangeTests.java 25 Oct 2005 21:35:47 -0000 1.3.2.1 *************** *** 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. Index: MillisecondTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/MillisecondTests.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** MillisecondTests.java 11 Mar 2005 14:37:24 -0000 1.6 --- MillisecondTests.java 25 Oct 2005 21:35:47 -0000 1.6.2.1 *************** *** 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. Index: DayTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/DayTests.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** DayTests.java 11 Mar 2005 14:37:23 -0000 1.6 --- DayTests.java 25 Oct 2005 21:35:47 -0000 1.6.2.1 *************** *** 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. Index: MinuteTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/MinuteTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MinuteTests.java 11 Mar 2005 14:37:24 -0000 1.5 --- MinuteTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: TimeSeriesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimeSeriesTests.java,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -d -r1.8 -r1.8.2.1 *** TimeSeriesTests.java 20 May 2005 08:20:04 -0000 1.8 --- TimeSeriesTests.java 25 Oct 2005 21:35:47 -0000 1.8.2.1 *************** *** 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. Index: MonthTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/MonthTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MonthTests.java 11 Mar 2005 14:37:24 -0000 1.5 --- MonthTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: YearTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/YearTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** YearTests.java 11 Mar 2005 14:37:23 -0000 1.4 --- YearTests.java 25 Oct 2005 21:35:47 -0000 1.4.2.1 *************** *** 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. Index: WeekTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/WeekTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** WeekTests.java 11 Mar 2005 14:37:23 -0000 1.5 --- WeekTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: SimpleTimePeriodTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/SimpleTimePeriodTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** SimpleTimePeriodTests.java 11 Mar 2005 14:37:23 -0000 1.5 --- SimpleTimePeriodTests.java 25 Oct 2005 21:35:47 -0000 1.5.2.1 *************** *** 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. Index: TimePeriodValuesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimePeriodValuesTests.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** TimePeriodValuesTests.java 20 May 2005 08:20:04 -0000 1.6 --- TimePeriodValuesTests.java 25 Oct 2005 21:35:47 -0000 1.6.2.1 *************** *** 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. Index: TimeSeriesCollectionTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/junit/TimeSeriesCollectionTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** TimeSeriesCollectionTests.java 28 Mar 2005 07:11:34 -0000 1.4 --- TimeSeriesCollectionTests.java 25 Oct 2005 21:35:47 -0000 1.4.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1910/source/org/jfree/data/time Modified Files: Tag: STABLE_1-0-0 TimePeriodValues.java FixedMillisecond.java Week.java TimePeriodAnchor.java TimePeriodValuesCollection.java Minute.java Month.java DynamicTimeSeriesCollection.java TimePeriod.java TimeSeriesDataItem.java Second.java TimeTableXYDataset.java TimePeriodFormatException.java MovingAverage.java TimePeriodValue.java Year.java TimeSeries.java RegularTimePeriod.java TimeSeriesTableModel.java TimeSeriesCollection.java Hour.java DateRange.java SimpleTimePeriod.java Day.java Quarter.java Millisecond.java Log Message: Updated FSF address. Index: TimeSeriesTableModel.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimeSeriesTableModel.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimeSeriesTableModel.java 15 Mar 2005 21:50:36 -0000 1.3 --- TimeSeriesTableModel.java 25 Oct 2005 21:35:24 -0000 1.3.2.1 *************** *** 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. Index: TimePeriodValues.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriodValues.java,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -d -r1.8 -r1.8.2.1 *** TimePeriodValues.java 19 May 2005 10:35:27 -0000 1.8 --- TimePeriodValues.java 25 Oct 2005 21:35:24 -0000 1.8.2.1 *************** *** 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. Index: Millisecond.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Millisecond.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** Millisecond.java 19 May 2005 10:35:27 -0000 1.5 --- Millisecond.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: SimpleTimePeriod.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/SimpleTimePeriod.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** SimpleTimePeriod.java 19 May 2005 10:35:27 -0000 1.5 --- SimpleTimePeriod.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: TimePeriodFormatException.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriodFormatException.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimePeriodFormatException.java 15 Mar 2005 21:50:36 -0000 1.3 --- TimePeriodFormatException.java 25 Oct 2005 21:35:24 -0000 1.3.2.1 *************** *** 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. Index: TimeSeriesDataItem.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimeSeriesDataItem.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** TimeSeriesDataItem.java 19 May 2005 10:35:27 -0000 1.5 --- TimeSeriesDataItem.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: Year.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Year.java,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -C2 -d -r1.9 -r1.9.2.1 *** Year.java 19 May 2005 10:35:27 -0000 1.9 --- Year.java 25 Oct 2005 21:35:24 -0000 1.9.2.1 *************** *** 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. Index: TimePeriod.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriod.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TimePeriod.java 15 Mar 2005 21:50:37 -0000 1.3 --- TimePeriod.java 25 Oct 2005 21:35:24 -0000 1.3.2.1 *************** *** 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. Index: Hour.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Hour.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** Hour.java 19 May 2005 10:35:27 -0000 1.5 --- Hour.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: MovingAverage.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/MovingAverage.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** MovingAverage.java 20 May 2005 08:20:03 -0000 1.5 --- MovingAverage.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: TimePeriodAnchor.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriodAnchor.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** TimePeriodAnchor.java 19 May 2005 10:35:27 -0000 1.5 --- TimePeriodAnchor.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: Minute.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Minute.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** Minute.java 19 May 2005 10:35:27 -0000 1.5 --- Minute.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: Day.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Day.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** Day.java 19 May 2005 10:35:27 -0000 1.7 --- Day.java 25 Oct 2005 21:35:24 -0000 1.7.2.1 *************** *** 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. Index: TimeSeries.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimeSeries.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** TimeSeries.java 20 May 2005 08:20:04 -0000 1.10 --- TimeSeries.java 25 Oct 2005 21:35:24 -0000 1.10.2.1 *************** *** 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. Index: Quarter.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Quarter.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** Quarter.java 19 May 2005 10:35:27 -0000 1.6 --- Quarter.java 25 Oct 2005 21:35:24 -0000 1.6.2.1 *************** *** 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. Index: TimePeriodValuesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriodValuesCollection.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** TimePeriodValuesCollection.java 20 May 2005 08:20:03 -0000 1.10 --- TimePeriodValuesCollection.java 25 Oct 2005 21:35:24 -0000 1.10.2.1 *************** *** 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. Index: TimeSeriesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimeSeriesCollection.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** TimeSeriesCollection.java 20 May 2005 08:20:03 -0000 1.10 --- TimeSeriesCollection.java 25 Oct 2005 21:35:24 -0000 1.10.2.1 *************** *** 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. Index: TimeTableXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimeTableXYDataset.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** TimeTableXYDataset.java 20 May 2005 08:20:03 -0000 1.10 --- TimeTableXYDataset.java 25 Oct 2005 21:35:24 -0000 1.10.2.1 *************** *** 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. Index: Month.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Month.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** Month.java 19 May 2005 10:35:27 -0000 1.7 --- Month.java 25 Oct 2005 21:35:24 -0000 1.7.2.1 *************** *** 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. Index: DynamicTimeSeriesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/DynamicTimeSeriesCollection.java,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -C2 -d -r1.11 -r1.11.2.1 *** DynamicTimeSeriesCollection.java 20 May 2005 08:20:03 -0000 1.11 --- DynamicTimeSeriesCollection.java 25 Oct 2005 21:35:24 -0000 1.11.2.1 *************** *** 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. Index: Week.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Week.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** Week.java 19 May 2005 10:35:27 -0000 1.7 --- Week.java 25 Oct 2005 21:35:24 -0000 1.7.2.1 *************** *** 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. Index: DateRange.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/DateRange.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DateRange.java 19 May 2005 10:35:27 -0000 1.5 --- DateRange.java 25 Oct 2005 21:35:24 -0000 1.5.2.1 *************** *** 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. Index: RegularTimePeriod.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/RegularTimePeriod.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** RegularTimePeriod.java 15 Mar 2005 21:50:37 -0000 1.6 --- RegularTimePeriod.java 25 Oct 2005 21:35:24 -0000 1.6.2.1 *************** *** 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. Index: Second.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/Second.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** Second.java 19 May 2005 10:35:27 -0000 1.6 --- Second.java 25 Oct 2005 21:35:24 -0000 1.6.2.1 *************** *** 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. Index: FixedMillisecond.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/FixedMillisecond.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** FixedMillisecond.java 19 May 2005 10:35:27 -0000 1.4 --- FixedMillisecond.java 25 Oct 2005 21:35:24 -0000 1.4.2.1 *************** *** 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. Index: TimePeriodValue.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/time/TimePeriodValue.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** TimePeriodValue.java 19 May 2005 10:35:27 -0000 1.4 --- TimePeriodValue.java 25 Oct 2005 21:35:24 -0000 1.4.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1829/source/org/jfree/data/statistics/junit Modified Files: Tag: STABLE_1-0-0 HistogramBinTests.java StatisticsTests.java HistogramDatasetTests.java SimpleHistogramBinTests.java DefaultStatisticalCategoryDatasetTests.java RegressionTests.java BoxAndWhiskerCalculatorTests.java DefaultBoxAndWhiskerCategoryDatasetTests.java SimpleHistogramDatasetTests.java MeanAndStandardDeviationTests.java BoxAndWhiskerItemTests.java DataStatisticsPackageTests.java Log Message: Updated FSF address. Index: RegressionTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/RegressionTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** RegressionTests.java 28 Mar 2005 19:44:08 -0000 1.3 --- RegressionTests.java 25 Oct 2005 21:34:59 -0000 1.3.2.1 *************** *** 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. Index: SimpleHistogramDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/SimpleHistogramDatasetTests.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** SimpleHistogramDatasetTests.java 29 Mar 2005 12:56:54 -0000 1.2 --- SimpleHistogramDatasetTests.java 25 Oct 2005 21:34:59 -0000 1.2.2.1 *************** *** 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. Index: MeanAndStandardDeviationTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/MeanAndStandardDeviationTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** MeanAndStandardDeviationTests.java 9 Feb 2005 13:52:47 -0000 1.1 --- MeanAndStandardDeviationTests.java 25 Oct 2005 21:34:59 -0000 1.1.2.1 *************** *** 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. Index: HistogramBinTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/HistogramBinTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** HistogramBinTests.java 29 Mar 2005 12:56:53 -0000 1.3 --- HistogramBinTests.java 25 Oct 2005 21:34:59 -0000 1.3.2.1 *************** *** 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. Index: BoxAndWhiskerItemTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/BoxAndWhiskerItemTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** BoxAndWhiskerItemTests.java 29 Mar 2005 12:56:53 -0000 1.3 --- BoxAndWhiskerItemTests.java 25 Oct 2005 21:34:59 -0000 1.3.2.1 *************** *** 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. Index: SimpleHistogramBinTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/SimpleHistogramBinTests.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** SimpleHistogramBinTests.java 29 Mar 2005 12:56:53 -0000 1.2 --- SimpleHistogramBinTests.java 25 Oct 2005 21:34:59 -0000 1.2.2.1 *************** *** 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. Index: BoxAndWhiskerCalculatorTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/BoxAndWhiskerCalculatorTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** BoxAndWhiskerCalculatorTests.java 29 Mar 2005 12:56:53 -0000 1.4 --- BoxAndWhiskerCalculatorTests.java 25 Oct 2005 21:34:59 -0000 1.4.2.1 *************** *** 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. Index: StatisticsTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/StatisticsTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** StatisticsTests.java 29 Mar 2005 12:56:53 -0000 1.4 --- StatisticsTests.java 25 Oct 2005 21:34:59 -0000 1.4.2.1 *************** *** 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. Index: HistogramDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/HistogramDatasetTests.java,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -d -r1.4.2.1 -r1.4.2.2 *** HistogramDatasetTests.java 8 Jun 2005 13:18:07 -0000 1.4.2.1 --- HistogramDatasetTests.java 25 Oct 2005 21:34:59 -0000 1.4.2.2 *************** *** 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. Index: DefaultStatisticalCategoryDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/DefaultStatisticalCategoryDatasetTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** DefaultStatisticalCategoryDatasetTests.java 9 Feb 2005 13:52:47 -0000 1.1 --- DefaultStatisticalCategoryDatasetTests.java 25 Oct 2005 21:34:59 -0000 1.1.2.1 *************** *** 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. Index: DefaultBoxAndWhiskerCategoryDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/DefaultBoxAndWhiskerCategoryDatasetTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultBoxAndWhiskerCategoryDatasetTests.java 29 Mar 2005 12:56:54 -0000 1.3 --- DefaultBoxAndWhiskerCategoryDatasetTests.java 25 Oct 2005 21:34:59 -0000 1.3.2.1 *************** *** 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. Index: DataStatisticsPackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/junit/DataStatisticsPackageTests.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DataStatisticsPackageTests.java 9 Feb 2005 13:52:47 -0000 1.5 --- DataStatisticsPackageTests.java 25 Oct 2005 21:34:59 -0000 1.5.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1742/source/org/jfree/data/statistics Modified Files: Tag: STABLE_1-0-0 BoxAndWhiskerCalculator.java SimpleHistogramBin.java HistogramBin.java BoxAndWhiskerItem.java DefaultBoxAndWhiskerXYDataset.java StatisticalCategoryDataset.java Statistics.java DefaultStatisticalCategoryDataset.java BoxAndWhiskerCategoryDataset.java BoxAndWhiskerXYDataset.java HistogramType.java HistogramDataset.java SimpleHistogramDataset.java Regression.java MeanAndStandardDeviation.java DefaultBoxAndWhiskerCategoryDataset.java Log Message: Updated FSF address. Index: SimpleHistogramBin.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/SimpleHistogramBin.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SimpleHistogramBin.java 19 May 2005 10:35:26 -0000 1.4 --- SimpleHistogramBin.java 25 Oct 2005 21:34:46 -0000 1.4.2.1 *************** *** 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. Index: DefaultBoxAndWhiskerCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -C2 -d -r1.9 -r1.9.2.1 *** DefaultBoxAndWhiskerCategoryDataset.java 20 May 2005 08:58:08 -0000 1.9 --- DefaultBoxAndWhiskerCategoryDataset.java 25 Oct 2005 21:34:46 -0000 1.9.2.1 *************** *** 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. Index: BoxAndWhiskerCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** BoxAndWhiskerCategoryDataset.java 28 Mar 2005 19:44:07 -0000 1.3 --- BoxAndWhiskerCategoryDataset.java 25 Oct 2005 21:34:46 -0000 1.3.2.1 *************** *** 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. Index: BoxAndWhiskerItem.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/BoxAndWhiskerItem.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** BoxAndWhiskerItem.java 19 May 2005 10:35:26 -0000 1.5 --- BoxAndWhiskerItem.java 25 Oct 2005 21:34:46 -0000 1.5.2.1 *************** *** 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. Index: Statistics.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/Statistics.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** Statistics.java 29 Mar 2005 12:57:13 -0000 1.5 --- Statistics.java 25 Oct 2005 21:34:46 -0000 1.5.2.1 *************** *** 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. Index: DefaultBoxAndWhiskerXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -C2 -d -r1.10 -r1.10.2.1 *** DefaultBoxAndWhiskerXYDataset.java 20 May 2005 08:58:08 -0000 1.10 --- DefaultBoxAndWhiskerXYDataset.java 25 Oct 2005 21:34:46 -0000 1.10.2.1 *************** *** 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. Index: Regression.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/Regression.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** Regression.java 24 Mar 2005 12:49:37 -0000 1.3 --- Regression.java 25 Oct 2005 21:34:46 -0000 1.3.2.1 *************** *** 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. Index: StatisticalCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/StatisticalCategoryDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** StatisticalCategoryDataset.java 1 Feb 2005 11:59:30 -0000 1.2 --- StatisticalCategoryDataset.java 25 Oct 2005 21:34:46 -0000 1.2.2.1 *************** *** 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. Index: HistogramDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/HistogramDataset.java,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -C2 -d -r1.9.2.1 -r1.9.2.2 *** HistogramDataset.java 8 Jun 2005 13:18:24 -0000 1.9.2.1 --- HistogramDataset.java 25 Oct 2005 21:34:46 -0000 1.9.2.2 *************** *** 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. Index: HistogramType.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/HistogramType.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** HistogramType.java 19 May 2005 10:35:26 -0000 1.4 --- HistogramType.java 25 Oct 2005 21:34:46 -0000 1.4.2.1 *************** *** 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. Index: HistogramBin.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/HistogramBin.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** HistogramBin.java 19 May 2005 10:35:26 -0000 1.4 --- HistogramBin.java 25 Oct 2005 21:34:46 -0000 1.4.2.1 *************** *** 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. Index: MeanAndStandardDeviation.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/MeanAndStandardDeviation.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** MeanAndStandardDeviation.java 19 May 2005 10:35:26 -0000 1.3 --- MeanAndStandardDeviation.java 25 Oct 2005 21:34:46 -0000 1.3.2.1 *************** *** 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. Index: BoxAndWhiskerCalculator.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/BoxAndWhiskerCalculator.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** BoxAndWhiskerCalculator.java 9 Feb 2005 13:51:57 -0000 1.3 --- BoxAndWhiskerCalculator.java 25 Oct 2005 21:34:46 -0000 1.3.2.1 *************** *** 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. Index: SimpleHistogramDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/SimpleHistogramDataset.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** SimpleHistogramDataset.java 20 May 2005 15:08:37 -0000 1.7 --- SimpleHistogramDataset.java 25 Oct 2005 21:34:46 -0000 1.7.2.1 *************** *** 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. Index: DefaultStatisticalCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -C2 -d -r1.8 -r1.8.2.1 *** DefaultStatisticalCategoryDataset.java 10 Feb 2005 10:07:03 -0000 1.8 --- DefaultStatisticalCategoryDataset.java 25 Oct 2005 21:34:46 -0000 1.8.2.1 *************** *** 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. Index: BoxAndWhiskerXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** BoxAndWhiskerXYDataset.java 28 Mar 2005 19:44:07 -0000 1.3 --- BoxAndWhiskerXYDataset.java 25 Oct 2005 21:34:46 -0000 1.3.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:34:33
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1656/source/org/jfree/data/resources Modified Files: Tag: STABLE_1-0-0 DataPackageResources_es.java DataPackageResources.java DataPackageResources_fr.java DataPackageResources_de.java DataPackageResources_ru.java DataPackageResources_pl.java Log Message: Updated FSF address. Index: DataPackageResources_pl.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources_pl.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources_pl.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources_pl.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. Index: DataPackageResources_fr.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources_fr.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources_fr.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources_fr.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. Index: DataPackageResources_ru.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources_ru.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources_ru.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources_ru.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. Index: DataPackageResources_de.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources_de.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources_de.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources_de.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. Index: DataPackageResources_es.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources_es.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources_es.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources_es.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. Index: DataPackageResources.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/resources/DataPackageResources.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataPackageResources.java 28 Mar 2005 19:44:05 -0000 1.2 --- DataPackageResources.java 25 Oct 2005 21:34:23 -0000 1.2.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1562/source/org/jfree/data/junit Modified Files: Tag: STABLE_1-0-0 RangeTypeTests.java KeyedObjectsTests.java KeyedObjects2DTests.java DataUtilitiesTests.java RangeTests.java DomainOrderTests.java DefaultKeyedValuesTests.java DataPackageTests.java KeyToGroupMapTests.java DefaultKeyedValues2DTests.java KeyedObjectTests.java DefaultKeyedValueTests.java Log Message: Updated FSF address. Index: DomainOrderTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DomainOrderTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** DomainOrderTests.java 19 May 2005 10:34:40 -0000 1.1 --- DomainOrderTests.java 25 Oct 2005 21:34:07 -0000 1.1.2.1 *************** *** 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. Index: KeyedObjectsTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/KeyedObjectsTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** KeyedObjectsTests.java 29 Mar 2005 12:56:53 -0000 1.4 --- KeyedObjectsTests.java 25 Oct 2005 21:34:07 -0000 1.4.2.1 *************** *** 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. Index: KeyedObjects2DTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/KeyedObjects2DTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** KeyedObjects2DTests.java 29 Mar 2005 12:56:53 -0000 1.4 --- KeyedObjects2DTests.java 25 Oct 2005 21:34:07 -0000 1.4.2.1 *************** *** 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. Index: DefaultKeyedValuesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DefaultKeyedValuesTests.java,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** DefaultKeyedValuesTests.java 6 Jul 2005 13:51:22 -0000 1.6.2.1 --- DefaultKeyedValuesTests.java 25 Oct 2005 21:34:07 -0000 1.6.2.2 *************** *** 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. Index: KeyToGroupMapTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/KeyToGroupMapTests.java,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** KeyToGroupMapTests.java 9 Jun 2005 07:44:23 -0000 1.1.2.1 --- KeyToGroupMapTests.java 25 Oct 2005 21:34:07 -0000 1.1.2.2 *************** *** 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. Index: DataUtilitiesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DataUtilitiesTests.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DataUtilitiesTests.java 17 May 2005 12:23:44 -0000 1.2 --- DataUtilitiesTests.java 25 Oct 2005 21:34:07 -0000 1.2.2.1 *************** *** 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. Index: DefaultKeyedValues2DTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DefaultKeyedValues2DTests.java,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -d -r1.4.2.2 -r1.4.2.3 *** DefaultKeyedValues2DTests.java 6 Oct 2005 11:17:27 -0000 1.4.2.2 --- DefaultKeyedValues2DTests.java 25 Oct 2005 21:34:07 -0000 1.4.2.3 *************** *** 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. Index: DataPackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DataPackageTests.java,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** DataPackageTests.java 9 Jun 2005 07:44:23 -0000 1.6.2.1 --- DataPackageTests.java 25 Oct 2005 21:34:07 -0000 1.6.2.2 *************** *** 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. Index: KeyedObjectTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/KeyedObjectTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** KeyedObjectTests.java 29 Mar 2005 12:56:53 -0000 1.3 --- KeyedObjectTests.java 25 Oct 2005 21:34:07 -0000 1.3.2.1 *************** *** 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. Index: RangeTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/RangeTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** RangeTests.java 29 Mar 2005 12:56:53 -0000 1.3 --- RangeTests.java 25 Oct 2005 21:34:07 -0000 1.3.2.1 *************** *** 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. Index: DefaultKeyedValueTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/DefaultKeyedValueTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** DefaultKeyedValueTests.java 29 Mar 2005 12:56:53 -0000 1.4 --- DefaultKeyedValueTests.java 25 Oct 2005 21:34:07 -0000 1.4.2.1 *************** *** 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. Index: RangeTypeTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/junit/RangeTypeTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** RangeTypeTests.java 19 May 2005 10:34:40 -0000 1.1 --- RangeTypeTests.java 25 Oct 2005 21:34:07 -0000 1.1.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:34:03
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/jdbc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1516/source/org/jfree/data/jdbc Modified Files: Tag: STABLE_1-0-0 JDBCXYDataset.java JDBCCategoryDataset.java JDBCPieDataset.java Log Message: Updated FSF address. Index: JDBCCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/jdbc/JDBCCategoryDataset.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** JDBCCategoryDataset.java 29 Mar 2005 12:56:54 -0000 1.4 --- JDBCCategoryDataset.java 25 Oct 2005 21:33:52 -0000 1.4.2.1 *************** *** 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. Index: JDBCPieDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/jdbc/JDBCPieDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** JDBCPieDataset.java 29 Mar 2005 12:56:54 -0000 1.3 --- JDBCPieDataset.java 25 Oct 2005 21:33:52 -0000 1.3.2.1 *************** *** 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. Index: JDBCXYDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/jdbc/JDBCXYDataset.java,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** JDBCXYDataset.java 20 May 2005 08:20:05 -0000 1.7 --- JDBCXYDataset.java 25 Oct 2005 21:33:52 -0000 1.7.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:33:46
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/io In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1383/source/org/jfree/data/io Modified Files: Tag: STABLE_1-0-0 CSV.java Log Message: Updated FSF address. Index: CSV.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/io/CSV.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** CSV.java 24 Feb 2005 10:44:56 -0000 1.3 --- CSV.java 25 Oct 2005 21:33:38 -0000 1.3.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:33:34
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1320/source/org/jfree/data/general/junit Modified Files: Tag: STABLE_1-0-0 DefaultKeyedValuesDatasetTests.java DatasetGroupTests.java DefaultPieDatasetTests.java DataGeneralPackageTests.java DefaultKeyedValues2DDatasetTests.java DefaultKeyedValueDatasetTests.java DatasetUtilitiesTests.java Log Message: Updated FSF address. Index: DefaultKeyedValueDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DefaultKeyedValueDatasetTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultKeyedValueDatasetTests.java 28 Mar 2005 19:44:07 -0000 1.3 --- DefaultKeyedValueDatasetTests.java 25 Oct 2005 21:33:26 -0000 1.3.2.1 *************** *** 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. Index: DefaultPieDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DefaultPieDatasetTests.java,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** DefaultPieDatasetTests.java 19 May 2005 10:34:27 -0000 1.1 --- DefaultPieDatasetTests.java 25 Oct 2005 21:33:26 -0000 1.1.2.1 *************** *** 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. Index: DefaultKeyedValues2DDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DefaultKeyedValues2DDatasetTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultKeyedValues2DDatasetTests.java 28 Mar 2005 19:44:07 -0000 1.3 --- DefaultKeyedValues2DDatasetTests.java 25 Oct 2005 21:33:26 -0000 1.3.2.1 *************** *** 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. Index: DatasetUtilitiesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DatasetUtilitiesTests.java,v retrieving revision 1.11.2.1 retrieving revision 1.11.2.2 diff -C2 -d -r1.11.2.1 -r1.11.2.2 *** DatasetUtilitiesTests.java 29 Jul 2005 10:50:18 -0000 1.11.2.1 --- DatasetUtilitiesTests.java 25 Oct 2005 21:33:26 -0000 1.11.2.2 *************** *** 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. Index: DefaultKeyedValuesDatasetTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DefaultKeyedValuesDatasetTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultKeyedValuesDatasetTests.java 28 Mar 2005 19:44:07 -0000 1.3 --- DefaultKeyedValuesDatasetTests.java 25 Oct 2005 21:33:26 -0000 1.3.2.1 *************** *** 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. Index: DatasetGroupTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DatasetGroupTests.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DatasetGroupTests.java 4 Mar 2005 11:50:11 -0000 1.2 --- DatasetGroupTests.java 25 Oct 2005 21:33:26 -0000 1.2.2.1 *************** *** 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. Index: DataGeneralPackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/junit/DataGeneralPackageTests.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** DataGeneralPackageTests.java 19 May 2005 10:34:27 -0000 1.6 --- DataGeneralPackageTests.java 25 Oct 2005 21:33:26 -0000 1.6.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1076/source/org/jfree/data/general Modified Files: Tag: STABLE_1-0-0 DefaultKeyedValues2DDataset.java SubSeriesDataset.java DatasetChangeEvent.java WaferMapDataset.java CombinationDataset.java SeriesChangeEvent.java SeriesDataset.java ValueDataset.java KeyedValues2DDataset.java KeyedValueDataset.java SeriesChangeListener.java AbstractSeriesDataset.java DefaultKeyedValueDataset.java DefaultPieDataset.java CombinedDataset.java PieDataset.java DatasetUtilities.java DefaultKeyedValuesDataset.java Dataset.java AbstractDataset.java Series.java KeyedValuesDataset.java DatasetGroup.java DatasetChangeListener.java DefaultValueDataset.java SeriesException.java Log Message: Updated FSF address. Index: ValueDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/ValueDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** ValueDataset.java 28 Mar 2005 19:44:04 -0000 1.2 --- ValueDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: Series.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/Series.java,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -C2 -d -r1.9 -r1.9.2.1 *** Series.java 20 May 2005 08:20:04 -0000 1.9 --- Series.java 25 Oct 2005 21:32:29 -0000 1.9.2.1 *************** *** 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. Index: DefaultKeyedValuesDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DefaultKeyedValuesDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultKeyedValuesDataset.java 19 May 2005 10:34:06 -0000 1.3 --- DefaultKeyedValuesDataset.java 25 Oct 2005 21:32:29 -0000 1.3.2.1 *************** *** 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. Index: AbstractDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/AbstractDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** AbstractDataset.java 1 Jun 2005 09:35:23 -0000 1.5 --- AbstractDataset.java 25 Oct 2005 21:32:29 -0000 1.5.2.1 *************** *** 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. Index: SeriesChangeListener.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/SeriesChangeListener.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** SeriesChangeListener.java 28 Mar 2005 19:44:02 -0000 1.2 --- SeriesChangeListener.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: CombinedDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/CombinedDataset.java,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** CombinedDataset.java 20 May 2005 08:20:04 -0000 1.6 --- CombinedDataset.java 25 Oct 2005 21:32:29 -0000 1.6.2.1 *************** *** 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. Index: DatasetChangeListener.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DatasetChangeListener.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** DatasetChangeListener.java 28 Mar 2005 19:44:04 -0000 1.2 --- DatasetChangeListener.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: DatasetUtilities.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DatasetUtilities.java,v retrieving revision 1.18.2.2 retrieving revision 1.18.2.3 diff -C2 -d -r1.18.2.2 -r1.18.2.3 *** DatasetUtilities.java 22 Sep 2005 09:06:47 -0000 1.18.2.2 --- DatasetUtilities.java 25 Oct 2005 21:32:29 -0000 1.18.2.3 *************** *** 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. Index: KeyedValues2DDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/KeyedValues2DDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** KeyedValues2DDataset.java 28 Mar 2005 19:44:02 -0000 1.2 --- KeyedValues2DDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: AbstractSeriesDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/AbstractSeriesDataset.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** AbstractSeriesDataset.java 20 May 2005 08:20:04 -0000 1.4 --- AbstractSeriesDataset.java 25 Oct 2005 21:32:29 -0000 1.4.2.1 *************** *** 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. Index: SeriesException.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/SeriesException.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SeriesException.java 19 May 2005 10:34:06 -0000 1.4 --- SeriesException.java 25 Oct 2005 21:32:29 -0000 1.4.2.1 *************** *** 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. Index: WaferMapDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/WaferMapDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** WaferMapDataset.java 23 Mar 2005 13:44:24 -0000 1.3 --- WaferMapDataset.java 25 Oct 2005 21:32:29 -0000 1.3.2.1 *************** *** 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. Index: DefaultValueDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DefaultValueDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DefaultValueDataset.java 19 May 2005 10:34:06 -0000 1.5 --- DefaultValueDataset.java 25 Oct 2005 21:32:29 -0000 1.5.2.1 *************** *** 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. Index: CombinationDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/CombinationDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** CombinationDataset.java 23 Mar 2005 13:45:56 -0000 1.2 --- CombinationDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: DatasetChangeEvent.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DatasetChangeEvent.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DatasetChangeEvent.java 28 Mar 2005 19:44:04 -0000 1.3 --- DatasetChangeEvent.java 25 Oct 2005 21:32:29 -0000 1.3.2.1 *************** *** 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. Index: DefaultPieDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DefaultPieDataset.java,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -d -r1.6.2.1 -r1.6.2.2 *** DefaultPieDataset.java 6 Jul 2005 13:51:01 -0000 1.6.2.1 --- DefaultPieDataset.java 25 Oct 2005 21:32:29 -0000 1.6.2.2 *************** *** 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. Index: KeyedValuesDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/KeyedValuesDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** KeyedValuesDataset.java 28 Mar 2005 19:44:02 -0000 1.2 --- KeyedValuesDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: Dataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/Dataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** Dataset.java 28 Mar 2005 19:44:02 -0000 1.3 --- Dataset.java 25 Oct 2005 21:32:29 -0000 1.3.2.1 *************** *** 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. Index: PieDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/PieDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** PieDataset.java 4 Mar 2005 11:49:56 -0000 1.2 --- PieDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. Index: DefaultKeyedValues2DDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DefaultKeyedValues2DDataset.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** DefaultKeyedValues2DDataset.java 19 May 2005 10:34:06 -0000 1.3 --- DefaultKeyedValues2DDataset.java 25 Oct 2005 21:32:29 -0000 1.3.2.1 *************** *** 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. Index: SubSeriesDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/SubSeriesDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** SubSeriesDataset.java 20 May 2005 08:20:04 -0000 1.5 --- SubSeriesDataset.java 25 Oct 2005 21:32:29 -0000 1.5.2.1 *************** *** 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. Index: SeriesChangeEvent.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/SeriesChangeEvent.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SeriesChangeEvent.java 19 May 2005 10:34:06 -0000 1.4 --- SeriesChangeEvent.java 25 Oct 2005 21:32:29 -0000 1.4.2.1 *************** *** 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. Index: DefaultKeyedValueDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DefaultKeyedValueDataset.java,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** DefaultKeyedValueDataset.java 19 May 2005 10:34:06 -0000 1.5 --- DefaultKeyedValueDataset.java 25 Oct 2005 21:32:29 -0000 1.5.2.1 *************** *** 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. Index: DatasetGroup.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/DatasetGroup.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** DatasetGroup.java 19 May 2005 10:34:06 -0000 1.4 --- DatasetGroup.java 25 Oct 2005 21:32:29 -0000 1.4.2.1 *************** *** 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. Index: SeriesDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/SeriesDataset.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** SeriesDataset.java 20 May 2005 14:51:10 -0000 1.4 --- SeriesDataset.java 25 Oct 2005 21:32:29 -0000 1.4.2.1 *************** *** 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. Index: KeyedValueDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/general/KeyedValueDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** KeyedValueDataset.java 28 Mar 2005 19:44:04 -0000 1.2 --- KeyedValueDataset.java 25 Oct 2005 21:32:29 -0000 1.2.2.1 *************** *** 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. |
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1013/source/org/jfree/data/gantt/junit Modified Files: Tag: STABLE_1-0-0 TaskSeriesCollectionTests.java TaskTests.java TaskSeriesTests.java DataGanttPackageTests.java Log Message: Updated FSF address. Index: TaskSeriesCollectionTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/junit/TaskSeriesCollectionTests.java,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -C2 -d -r1.5.2.1 -r1.5.2.2 *** TaskSeriesCollectionTests.java 12 Jul 2005 09:25:13 -0000 1.5.2.1 --- TaskSeriesCollectionTests.java 25 Oct 2005 21:32:05 -0000 1.5.2.2 *************** *** 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. Index: TaskTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/junit/TaskTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TaskTests.java 29 Mar 2005 12:56:54 -0000 1.3 --- TaskTests.java 25 Oct 2005 21:32:06 -0000 1.3.2.1 *************** *** 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. Index: DataGanttPackageTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/junit/DataGanttPackageTests.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** DataGanttPackageTests.java 4 Mar 2005 11:46:18 -0000 1.4 --- DataGanttPackageTests.java 25 Oct 2005 21:32:06 -0000 1.4.2.1 *************** *** 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. Index: TaskSeriesTests.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/junit/TaskSeriesTests.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TaskSeriesTests.java 29 Mar 2005 12:56:54 -0000 1.3 --- TaskSeriesTests.java 25 Oct 2005 21:32:06 -0000 1.3.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:31:51
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv950/source/org/jfree/data/gantt Modified Files: Tag: STABLE_1-0-0 TaskSeries.java Task.java GanttCategoryDataset.java TaskSeriesCollection.java Log Message: Updated FSF address. Index: TaskSeries.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/TaskSeries.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** TaskSeries.java 29 Mar 2005 12:56:57 -0000 1.3 --- TaskSeries.java 25 Oct 2005 21:31:43 -0000 1.3.2.1 *************** *** 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. Index: Task.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/Task.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** Task.java 19 May 2005 10:34:07 -0000 1.4 --- Task.java 25 Oct 2005 21:31:44 -0000 1.4.2.1 *************** *** 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. Index: TaskSeriesCollection.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/TaskSeriesCollection.java,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -C2 -d -r1.9.2.1 -r1.9.2.2 *** TaskSeriesCollection.java 12 Jul 2005 09:25:24 -0000 1.9.2.1 --- TaskSeriesCollection.java 25 Oct 2005 21:31:44 -0000 1.9.2.2 *************** *** 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. Index: GanttCategoryDataset.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/gantt/GanttCategoryDataset.java,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** GanttCategoryDataset.java 23 Mar 2005 13:48:54 -0000 1.2 --- GanttCategoryDataset.java 25 Oct 2005 21:31:44 -0000 1.2.2.1 *************** *** 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. |
From: David G. <mu...@us...> - 2005-10-25 21:31:40
|
Update of /cvsroot/jfreechart/jfreechart/source/org/jfree/data/function In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv908/source/org/jfree/data/function Modified Files: Tag: STABLE_1-0-0 PowerFunction2D.java LineFunction2D.java Function2D.java NormalDistributionFunction2D.java Log Message: Updated FSF address. Index: NormalDistributionFunction2D.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/function/NormalDistributionFunction2D.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** NormalDistributionFunction2D.java 24 Feb 2005 10:44:45 -0000 1.3 --- NormalDistributionFunction2D.java 25 Oct 2005 21:31:32 -0000 1.3.2.1 *************** *** 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. Index: PowerFunction2D.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/function/PowerFunction2D.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** PowerFunction2D.java 24 Feb 2005 10:44:45 -0000 1.3 --- PowerFunction2D.java 25 Oct 2005 21:31:32 -0000 1.3.2.1 *************** *** 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. Index: LineFunction2D.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/function/LineFunction2D.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** LineFunction2D.java 24 Feb 2005 10:44:45 -0000 1.3 --- LineFunction2D.java 25 Oct 2005 21:31:32 -0000 1.3.2.1 *************** *** 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. Index: Function2D.java =================================================================== RCS file: /cvsroot/jfreechart/jfreechart/source/org/jfree/data/function/Function2D.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** Function2D.java 24 Feb 2005 10:44:45 -0000 1.3 --- Function2D.java 25 Oct 2005 21:31:32 -0000 1.3.2.1 *************** *** 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. |