Example usage for org.jfree.data.general Dataset interface-usage

List of usage examples for org.jfree.data.general Dataset interface-usage

Introduction

In this page you can find the example usage for org.jfree.data.general Dataset interface-usage.

Usage

From source file org.jfree.data.general.PieDataset.java

/**
 * A general purpose dataset where values are associated with keys.  As the
 * name suggests, you can use this dataset to supply data for pie charts (refer
 * to the {@link org.jfree.chart.plot.PiePlot} class).
 */
public interface PieDataset extends KeyedValues, Dataset {

From source file org.jfree.data.pie.PieDataset.java

/**
 * A general purpose dataset where values are associated with keys.  As the
 * name suggests, you can use this dataset to supply data for pie charts (refer
 * to the {@link PiePlot} class).
 */
public interface PieDataset extends KeyedValues, Dataset {

From source file org.jfree.data.general.AbstractDataset.java

/**
 * An abstract implementation of the {@link Dataset} interface, containing a
 * mechanism for registering change listeners.
 */
public abstract class AbstractDataset implements Dataset, Cloneable, Serializable, ObjectInputValidation {