[Schmitzm-commits] r2092 - trunk/schmitzm-jfree/src/main/java/de/schmitzm/jfree/chart/selection

scm-commit at wald.intevation.org scm-commit at wald.intevation.org
Wed Oct 3 13:52:43 CEST 2012


Author: mojays
Date: 2012-10-03 13:52:42 +0200 (Wed, 03 Oct 2012)
New Revision: 2092

Modified:
   trunk/schmitzm-jfree/src/main/java/de/schmitzm/jfree/chart/selection/DatasetSelectionModelProvider.java
Log:
DatasetSelectionModelProvider: JavaDoc updated

Modified: trunk/schmitzm-jfree/src/main/java/de/schmitzm/jfree/chart/selection/DatasetSelectionModelProvider.java
===================================================================
--- trunk/schmitzm-jfree/src/main/java/de/schmitzm/jfree/chart/selection/DatasetSelectionModelProvider.java	2012-10-03 11:29:29 UTC (rev 2091)
+++ trunk/schmitzm-jfree/src/main/java/de/schmitzm/jfree/chart/selection/DatasetSelectionModelProvider.java	2012-10-03 11:52:42 UTC (rev 2092)
@@ -1,28 +1,28 @@
 /*******************************************************************************
  * Copyright (c) 2009 Martin O. J. Schmitz.
- * 
- * This file is part of the SCHMITZM library - a collection of utility 
- * classes based on Java 1.6, focusing (not only) on Java Swing 
+ *
+ * This file is part of the SCHMITZM library - a collection of utility
+ * classes based on Java 1.6, focusing (not only) on Java Swing
  * and the Geotools library.
- * 
+ *
  * The SCHMITZM project is hosted at:
  * http://wald.intevation.org/projects/schmitzm/
- * 
+ *
  * This program 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 3
  * of the License, or (at your option) any later version.
- * 
+ *
  * This program 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 General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Lesser General Public License (license.txt)
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  * or try this link: http://www.gnu.org/licenses/lgpl.html
- * 
+ *
  * Contributors:
  *     Martin O. J. Schmitz - initial API and implementation
  *     Stefan A. Tzeggai - additional utility classes
@@ -33,22 +33,22 @@
 import org.jfree.data.general.Dataset;
 
 /**
- * Interface for all objects (especially {@link Plot Plots}) which provide
+ * Interface for all objects (especially several renderers) which provide
  * a {@link AbstractDatasetSelectionModel}.
  * @author <a href="mailto:Martin.Schmitz at koeln.de">Martin Schmitz</a> (University of Bonn/Germany)
  */
 public interface DatasetSelectionModelProvider<E extends DatasetSelectionModel<?,?,?>> {
   /**
-   * Returns the selection model for the (primary) {@link Dataset}. 
+   * Returns the selection model for the (primary) {@link Dataset}.
    */
   public E getSelectionModel();
 
   /**
-   * Sets the selection model for the (primary) {@link Dataset}. 
+   * Sets the selection model for the (primary) {@link Dataset}.
    * @param model   the new selection model
    */
   public void setSelectionModel(E model);
-  
+
   /**
    * Creates an adequate selection model for a dataset.
    * @param dataset a dataset



More information about the Schmitzm-commits mailing list