⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeperiodvaluescollection.java

📁 这是一个segy数据显示程序
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, 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.] * * ------------------------------- * TimePeriodValuesCollection.java * ------------------------------- * (C) Copyright 2003, by Object Refinery Limited. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: TimePeriodValuesCollection.java,v 1.14 2004/05/07 15:56:49 mungady Exp $ * * Changes * ------- * 22-Apr-2003 : Version 1 (DG); * 05-May-2004 : Now extends AbstractIntervalXYDataset (DG); * */package org.jfree.data.time;import java.io.Serializable;import java.util.Iterator;import java.util.List;import java.util.TimeZone;import org.jfree.data.AbstractIntervalXYDataset;import org.jfree.data.DomainInfo;import org.jfree.data.IntervalXYDataset;import org.jfree.data.Range;/** * A collection of {@link TimePeriodValues} objects. * <P> * This class implements the {@link org.jfree.data.XYDataset} interface, as well as the * extended {@link IntervalXYDataset} interface.  This makes it a convenient dataset for use with * the {@link org.jfree.chart.plot.XYPlot} class. */public class TimePeriodValuesCollection extends AbstractIntervalXYDataset                                        implements IntervalXYDataset,                                                   DomainInfo,                                                   Serializable {    /**      * Useful constant for controlling the x-value returned for a time period.      * @deprecated Replaced by TimePeriodAnchor.START.     */    public static final int START = 0;    /**      * Useful constant for controlling the x-value returned for a time period.      * @deprecated Replaced by TimePeriodAnchor.MIDDLE.     */    public static final int MIDDLE = 1;    /**      * Useful constant for controlling the x-value returned for a time period.      * @deprecated Replaced by TimePeriodAnchor.END.     */    public static final int END = 2;    /** Storage for the time series. */    private List data;    /** The position within a time period to return as the x-value (START, MIDDLE or END). */    private TimePeriodAnchor xPosition;        /**     * A flag that indicates that the domain is 'points in time'.  If this flag is true, only     * the x-value is used to determine the range of values in the domain, the start and end     * x-values are ignored.     */    private boolean domainIsPointsInTime;    /**     * Constructs an empty dataset, tied to the default timezone.     */    public TimePeriodValuesCollection() {        this((TimePeriodValues) null);    }    /**     * Constructs an empty dataset, tied to a specific timezone.     *     * @param zone the timezone.     * @deprecated The TimeZone is ignored, use an alternative constructor.     */    public TimePeriodValuesCollection(final TimeZone zone) {        this(null, zone);    }    /**     * Constructs a dataset containing a single series.  Additional series can be added.     *     * @param series  the series.     */    public TimePeriodValuesCollection(final TimePeriodValues series) {        this.data = new java.util.ArrayList();        this.xPosition = TimePeriodAnchor.MIDDLE;        this.domainIsPointsInTime = true;        if (series != null) {            this.data.add(series);            series.addChangeListener(this);        }    }    /**     * Constructs a dataset containing a single series (more can be added),     * tied to a specific timezone.     *     * @param series the series.     * @param zone the timezone.     * @deprecated TimeZone parameter is not used.     */    public TimePeriodValuesCollection(final TimePeriodValues series, final TimeZone zone) {      this(series);    }    /**     * Returns the position of the x-value returned for a time period (START,     * MIDDLE, or END).     *     * @return the position.     *      * @deprecated Use getXPosition().     */    public int getPosition() {        final TimePeriodAnchor anchor = getXPosition();        if (anchor == TimePeriodAnchor.START) {            return START;        }        else if (anchor == TimePeriodAnchor.MIDDLE) {            return MIDDLE;        }        else if (anchor == TimePeriodAnchor.END) {            return END;        }        return MIDDLE;    }        /**     * Sets the position - this controls the x-value that is returned for a     * particular time period.     * <P>     * Use the constants START, MIDDLE and END.     *     * @param position the position.     *      * @deprecated Use setXPosition(...).     */    public void setPosition(final int position) {        if (position == START) {            setXPosition(TimePeriodAnchor.START);        }        else if (position == MIDDLE) {            setXPosition(TimePeriodAnchor.MIDDLE);        }        else if (position == END) {            setXPosition(TimePeriodAnchor.END);        }    }    /**     * Returns the position of the X value within each time period.     *      * @return The position.     */    public TimePeriodAnchor getXPosition() {        return this.xPosition;    }    /**     * Sets the position of the x axis within each time period.     *      * @param position  the position.     */    public void setXPosition(final TimePeriodAnchor position) {        this.xPosition = position;    }        /**     * Returns a flag that controls whether the domain is treated as 'points in time'.     * <P>     * This flag is used when determining the max and min values for the domain.  If true, then     * only the x-values are considered for the max and min values.  If false, then the start and     * end x-values will also be taken into consideration     *     * @return The flag.     */    public boolean getDomainIsPointsInTime() {        return this.domainIsPointsInTime;    }    /**     * Sets a flag that controls whether the domain is treated as 'points in time', or time     * periods.     *     * @param flag  the new value of the flag.     */    public void setDomainIsPointsInTime(final boolean flag) {        this.domainIsPointsInTime = flag;    }    /**     * Returns the number of series in the collection.     *     * @return The series count.     */    public int getSeriesCount() {        return this.data.size();    }    /**     * Returns a series.     *     * @param series The index of the series (zero-based).     *     * @return the series.     */    public TimePeriodValues getSeries(final int series) {        // check arguments...        if ((series < 0) || (series > getSeriesCount())) {            throw new IllegalArgumentException(                "TimePeriodValuesCollection.getSeries(...): index outside valid range.");        }        // fetch the series...        final TimePeriodValues ts = (TimePeriodValues) this.data.get(series);        return ts;    }    /**     * Returns the name of a series.     * <P>     * This method is provided for convenience.     *     * @param series The index of the series (zero-based).     *     * @return the name of a series.     */    public String getSeriesName(final int series) {        // check arguments...delegated        // fetch the series name...

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -