![JAR search and dependency download from the Maven repository](/logo.png)
org.jfree.data.general.Series Maven / Gradle / Ivy
Show all versions of jfreechart Show documentation
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (C) Copyright 2000-present, by David Gilbert 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Oracle and Java are registered trademarks of Oracle and/or its affiliates.
* Other names may be trademarks of their respective owners.]
*
* -----------
* Series.java
* -----------
* (C) Copyright 2001-present, by David Gilbert.
*
* Original Author: David Gilbert;
* Contributor(s): Tracy Hiltbrand (equals/hashCode comply with EqualsVerifier);
*
*/
package org.jfree.data.general;
import org.jfree.chart.util.Args;
import javax.swing.event.EventListenerList;
import java.beans.*;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.Objects;
/**
* Base class representing a data series. Subclasses are left to implement the
* actual data structures.
*
* The series has two properties ("Key" and "Description") for which you can
* register a {@code PropertyChangeListener}.
*
* You can also register a {@link SeriesChangeListener} to receive notification
* of changes to the series data.
*/
public abstract class Series implements Cloneable, Serializable {
/** For serialization. */
private static final long serialVersionUID = -6906561437538683581L;
/** The key for the series. */
private Comparable key;
/** A description of the series. */
private String description;
/** Storage for registered change listeners. */
private transient EventListenerList listeners;
/** Object to support property change notification. */
private transient PropertyChangeSupport propertyChangeSupport;
/** Object to support property change notification. */
private transient VetoableChangeSupport vetoableChangeSupport;
/** A flag that controls whether changes are notified. */
private boolean notify;
/**
* Creates a new series with the specified key.
*
* @param key the series key ({@code null} not permitted).
*/
protected Series(Comparable key) {
this(key, null);
}
/**
* Creates a new series with the specified key and description.
*
* @param key the series key ({@code null} NOT permitted).
* @param description the series description ({@code null} permitted).
*/
protected Series(Comparable key, String description) {
Args.nullNotPermitted(key, "key");
this.key = key;
this.description = description;
this.listeners = new EventListenerList();
this.propertyChangeSupport = new PropertyChangeSupport(this);
this.vetoableChangeSupport = new VetoableChangeSupport(this);
this.notify = true;
}
/**
* Returns the key for the series.
*
* @return The series key (never {@code null}).
*
* @see #setKey(Comparable)
*/
public Comparable getKey() {
return this.key;
}
/**
* Sets the key for the series and sends a {@code VetoableChangeEvent}
* (with the property name "Key") to all registered listeners. For
* backwards compatibility, this method also fires a regular
* {@code PropertyChangeEvent}. If the key change is vetoed this
* method will throw an IllegalArgumentException.
*
* This implementation is not very robust when cloning or deserialising
* series collections, so you should not rely upon it for that purpose.
* In future releases, the series key will be made immutable.
*
* @param key the key ({@code null} not permitted).
*
* @see #getKey()
* @deprecated In future releases the series key will be immutable.
*/
@Deprecated
public void setKey(Comparable key) {
Args.nullNotPermitted(key, "key");
Comparable old = this.key;
try {
// if this series belongs to a dataset, the dataset might veto the
// change if it results in two series within the dataset having the
// same key
this.vetoableChangeSupport.fireVetoableChange("Key", old, key);
this.key = key;
// prior to 1.0.14, we just fired a PropertyChange - so we need to
// keep doing this
this.propertyChangeSupport.firePropertyChange("Key", old, key);
} catch (PropertyVetoException e) {
throw new IllegalArgumentException(e.getMessage());
}
}
/**
* Returns a description of the series.
*
* @return The series description (possibly {@code null}).
*
* @see #setDescription(String)
*/
public String getDescription() {
return this.description;
}
/**
* Sets the description of the series and sends a
* {@code PropertyChangeEvent} to all registered listeners.
*
* @param description the description ({@code null} permitted).
*
* @see #getDescription()
*/
public void setDescription(String description) {
String old = this.description;
this.description = description;
this.propertyChangeSupport.firePropertyChange("Description", old,
description);
}
/**
* Returns the flag that controls whether or not change events are sent to
* registered listeners.
*
* @return A boolean.
*
* @see #setNotify(boolean)
*/
public boolean getNotify() {
return this.notify;
}
/**
* Sets the flag that controls whether or not change events are sent to
* registered listeners.
*
* @param notify the new value of the flag.
*
* @see #getNotify()
*/
public void setNotify(boolean notify) {
if (this.notify != notify) {
this.notify = notify;
fireSeriesChanged();
}
}
/**
* Returns {@code true} if the series contains no data items, and
* {@code false} otherwise.
*
* @return A boolean.
*/
public boolean isEmpty() {
return (getItemCount() == 0);
}
/**
* Returns the number of data items in the series.
*
* @return The number of data items in the series.
*/
public abstract int getItemCount();
/**
* Returns a clone of the series.
*
* Notes:
*
* - No need to clone the name or description, since String object is
* immutable.
* - We set the listener list to empty, since the listeners did not
* register with the clone.
* - Same applies to the PropertyChangeSupport instance.
*
*
* @return A clone of the series.
*
* @throws CloneNotSupportedException not thrown by this class, but
* subclasses may differ.
*/
@Override
public Object clone() throws CloneNotSupportedException {
Series clone = (Series) super.clone();
clone.listeners = new EventListenerList();
clone.propertyChangeSupport = new PropertyChangeSupport(clone);
clone.vetoableChangeSupport = new VetoableChangeSupport(clone);
return clone;
}
/**
* Tests the series for equality with another object.
*
* @param obj the object ({@code null} permitted).
*
* @return {@code true} or {@code false}.
*/
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof Series)) {
return false;
}
Series that = (Series) obj;
if (!Objects.equals(this.key, that.key)) {
return false;
}
if (!Objects.equals(this.description, that.description)) {
return false;
}
if (!that.canEqual(this)) {
return false;
}
return true;
}
/**
* Ensures symmetry between super/subclass implementations of equals. For
* more detail, see http://jqno.nl/equalsverifier/manual/inheritance.
*
* @param other Object
*
* @return true ONLY if the parameter is THIS class type
*/
public boolean canEqual(Object other) {
// fix the "equals not symmetric" problem
return (other instanceof Series);
}
/**
* Returns a hash code.
*
* @return A hash code.
*/
@Override
public int hashCode() {
int hash = 5;
hash = 53 * hash + Objects.hashCode(this.key);
hash = 53 * hash + Objects.hashCode(this.description);
return hash;
}
/**
* Registers an object with this series, to receive notification whenever
* the series changes.
*
* Objects being registered must implement the {@link SeriesChangeListener}
* interface.
*
* @param listener the listener to register.
*/
public void addChangeListener(SeriesChangeListener listener) {
this.listeners.add(SeriesChangeListener.class, listener);
}
/**
* Deregisters an object, so that it not longer receives notification
* whenever the series changes.
*
* @param listener the listener to deregister.
*/
public void removeChangeListener(SeriesChangeListener listener) {
this.listeners.remove(SeriesChangeListener.class, listener);
}
/**
* General method for signalling to registered listeners that the series
* has been changed.
*/
public void fireSeriesChanged() {
if (this.notify) {
notifyListeners(new SeriesChangeEvent(this));
}
}
/**
* Sends a change event to all registered listeners.
*
* @param event contains information about the event that triggered the
* notification.
*/
protected void notifyListeners(SeriesChangeEvent event) {
Object[] listenerList = this.listeners.getListenerList();
for (int i = listenerList.length - 2; i >= 0; i -= 2) {
if (listenerList[i] == SeriesChangeListener.class) {
((SeriesChangeListener) listenerList[i + 1]).seriesChanged(
event);
}
}
}
/**
* Adds a property change listener to the series.
*
* @param listener the listener.
*/
public void addPropertyChangeListener(PropertyChangeListener listener) {
this.propertyChangeSupport.addPropertyChangeListener(listener);
}
/**
* Removes a property change listener from the series.
*
* @param listener the listener.
*/
public void removePropertyChangeListener(PropertyChangeListener listener) {
this.propertyChangeSupport.removePropertyChangeListener(listener);
}
/**
* Fires a property change event.
*
* @param property the property key.
* @param oldValue the old value.
* @param newValue the new value.
*/
protected void firePropertyChange(String property, Object oldValue,
Object newValue) {
this.propertyChangeSupport.firePropertyChange(property, oldValue,
newValue);
}
/**
* Adds a vetoable property change listener to the series.
*
* @param listener the listener.
*/
public void addVetoableChangeListener(VetoableChangeListener listener) {
this.vetoableChangeSupport.addVetoableChangeListener(listener);
}
/**
* Removes a vetoable property change listener from the series.
*
* @param listener the listener.
*/
public void removeVetoableChangeListener(VetoableChangeListener listener) {
this.vetoableChangeSupport.removeVetoableChangeListener(listener);
}
/**
* Fires a vetoable property change event.
*
* @param property the property key.
* @param oldValue the old value.
* @param newValue the new value.
*
* @throws PropertyVetoException if the change was vetoed.
*/
protected void fireVetoableChange(String property, Object oldValue,
Object newValue) throws PropertyVetoException {
this.vetoableChangeSupport.fireVetoableChange(property, oldValue,
newValue);
}
/**
* Provides serialization support.
*
* @param stream the output stream ({@code null} not permitted).
*
* @throws IOException if there is an I/O error.
*/
private void writeObject(ObjectOutputStream stream) throws IOException {
stream.defaultWriteObject();
}
/**
* Provides serialization support.
*
* @param stream the input stream ({@code null} not permitted).
*
* @throws IOException if there is an I/O error.
* @throws ClassNotFoundException if there is a classpath problem.
*/
private void readObject(ObjectInputStream stream)
throws IOException, ClassNotFoundException {
stream.defaultReadObject();
this.listeners = new EventListenerList();
this.propertyChangeSupport = new PropertyChangeSupport(this);
this.vetoableChangeSupport = new VetoableChangeSupport(this);
}
}