亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? defaulttablexydataset.java

?? jfreechart1.0.1 jsp繪制圖表的開發包
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
    public Number getY(int series, int index) {
        XYSeries ts = (XYSeries) this.data.get(series);
        XYDataItem dataItem = ts.getDataItem(index);
        return dataItem.getY();
    }

    /**
     * Returns the starting Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The starting Y value.
     */
    public Number getStartY(int series, int item) {
        return getY(series, item);
    }

    /**
     * Returns the ending Y value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The ending Y value.
     */
    public Number getEndY(int series, int item) {
        return getY(series, item);
    }

    /**
     * Removes all the series from the collection and sends a 
     * {@link DatasetChangeEvent} to all registered listeners.
     */
    public void removeAllSeries() {

        // Unregister the collection as a change listener to each series in
        // the collection.
        for (int i = 0; i < this.data.size(); i++) {
            XYSeries series = (XYSeries) this.data.get(i);
            series.removeChangeListener(this);
        }

        // Remove all the series from the collection and notify listeners.
        this.data.clear();
        this.xPoints.clear();
        fireDatasetChanged();
    }

    /**
     * Removes a series from the collection and sends a 
     * {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param series  the series (<code>null</code> not permitted).
     */
    public void removeSeries(XYSeries series) {

        // check arguments...
        if (series == null) {
            throw new IllegalArgumentException("Null 'series' argument.");
        }

        // remove the series...
        if (this.data.contains(series)) {
            series.removeChangeListener(this);
            this.data.remove(series);
            if (this.data.size() == 0) {
                this.xPoints.clear();
            }
            fireDatasetChanged();
        }

    }

    /**
     * Removes a series from the collection and sends a 
     * {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param series  the series (zero based index).
     */
    public void removeSeries(int series) {

        // check arguments...
        if ((series < 0) || (series > getSeriesCount())) {
            throw new IllegalArgumentException("Index outside valid range.");
        }

        // fetch the series, remove the change listener, then remove the series.
        XYSeries s = (XYSeries) this.data.get(series);
        s.removeChangeListener(this);
        this.data.remove(series);
        if (this.data.size() == 0) {
            this.xPoints.clear();
        }
        else if (this.autoPrune) {
            prune();
        }
        fireDatasetChanged();

    }

    /**
     * Removes the items from all series for a given x value.
     *
     * @param x  the x-value.
     */
    public void removeAllValuesForX(Number x) {
        if (x == null) { 
            throw new IllegalArgumentException("Null 'x' argument.");
        }
        boolean savedState = this.propagateEvents;
        this.propagateEvents = false;
        for (int s = 0; s < this.data.size(); s++) {
            XYSeries series = (XYSeries) this.data.get(s);
            series.remove(x);
        }
        this.propagateEvents = savedState;
        this.xPoints.remove(x);
        fireDatasetChanged();
    }

    /**
     * Returns <code>true</code> if all the y-values for the specified x-value
     * are <code>null</code> and <code>false</code> otherwise.
     * 
     * @param x  the x-value.
     * 
     * @return A boolean.
     */
    protected boolean canPrune(Number x) {
        for (int s = 0; s < this.data.size(); s++) {
            XYSeries series = (XYSeries) this.data.get(s);
            if (series.getY(series.indexOf(x)) != null) {
                return false;
            }
        }
        return true;
    }
    
    /**
     * Removes all x-values for which all the y-values are <code>null</code>.
     */
    public void prune() {
        HashSet hs = (HashSet) this.xPoints.clone();
        Iterator iterator = hs.iterator();
        while (iterator.hasNext()) {
            Number x = (Number) iterator.next();
            if (canPrune(x)) {
                removeAllValuesForX(x);
            }
        }
    }
    
    /**
     * This method receives notification when a series belonging to the dataset
     * changes.  It responds by updating the x-points for the entire dataset 
     * and sending a {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param event  information about the change.
     */
    public void seriesChanged(SeriesChangeEvent event) {
        if (this.propagateEvents) {
            updateXPoints();
            fireDatasetChanged();
        }
    }

    /**
     * Tests this collection for equality with an arbitrary object.
     *
     * @param obj  the object (<code>null</code> permitted).
     *
     * @return A boolean.
     */
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof DefaultTableXYDataset)) {
            return false;
        }
        DefaultTableXYDataset that = (DefaultTableXYDataset) obj;
        if (this.autoPrune != that.autoPrune) {
            return false;
        }
        if (this.propagateEvents != that.propagateEvents) {
            return false;   
        }
        if (!this.intervalDelegate.equals(that.intervalDelegate)) {
            return false;   
        }
        if (!ObjectUtilities.equal(this.data, that.data)) {
            return false;
        }
        return true;
    }

    /**
     * Returns a hash code.
     * 
     * @return A hash code.
     */
    public int hashCode() {
        int result;
        result = (this.data != null ? this.data.hashCode() : 0);
        result = 29 * result 
                 + (this.xPoints != null ? this.xPoints.hashCode() : 0);
        result = 29 * result + (this.propagateEvents ? 1 : 0);
        result = 29 * result + (this.autoPrune ? 1 : 0);
        return result;
    }
    
    /**
     * Returns the minimum x-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     * 
     * @return The minimum value.
     */
    public double getDomainLowerBound(boolean includeInterval) {
        return this.intervalDelegate.getDomainLowerBound(includeInterval);
    }

    /**
     * Returns the maximum x-value in the dataset.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     * 
     * @return The maximum value.
     */
    public double getDomainUpperBound(boolean includeInterval) {
        return this.intervalDelegate.getDomainUpperBound(includeInterval);
    }

    /**
     * Returns the range of the values in this dataset's domain.
     *
     * @param includeInterval  a flag that determines whether or not the
     *                         x-interval is taken into account.
     * 
     * @return The range.
     */
    public Range getDomainBounds(boolean includeInterval) {
        if (includeInterval) {
            return this.intervalDelegate.getDomainBounds(includeInterval);
        }
        else {
            return DatasetUtilities.iterateDomainBounds(this, includeInterval);
        }
    }
    
    /**
     * Returns the interval position factor. 
     * 
     * @return The interval position factor.
     */
    public double getIntervalPositionFactor() {
        return this.intervalDelegate.getIntervalPositionFactor();
    }

    /**
     * Sets the interval position factor. Must be between 0.0 and 1.0 inclusive.
     * If the factor is 0.5, the gap is in the middle of the x values. If it
     * is lesser than 0.5, the gap is farther to the left and if greater than
     * 0.5 it gets farther to the right.
     *  
     * @param d the new interval position factor.
     */
    public void setIntervalPositionFactor(double d) {
        this.intervalDelegate.setIntervalPositionFactor(d);
        fireDatasetChanged();
    }

    /**
     * returns the full interval width. 
     * 
     * @return The interval width to use.
     */
    public double getIntervalWidth() {
        return this.intervalDelegate.getIntervalWidth();
    }

    /**
     * Sets the interval width to a fixed value, and sends a 
     * {@link DatasetChangeEvent} to all registered listeners. 
     * 
     * @param d  the new interval width (must be > 0).
     */
    public void setIntervalWidth(double d) {
        this.intervalDelegate.setFixedIntervalWidth(d);
        fireDatasetChanged();
    }

    /**
     * Returns whether the interval width is automatically calculated or not.
     * 
     * @return A flag that determines whether or not the interval width is 
     *         automatically calculated.
     */
    public boolean isAutoWidth() {
        return this.intervalDelegate.isAutoWidth();
    }

    /**
     * Sets the flag that indicates whether the interval width is automatically
     * calculated or not. 
     * 
     * @param b  a boolean.
     */
    public void setAutoWidth(boolean b) {
        this.intervalDelegate.setAutoWidth(b);
        fireDatasetChanged();
    }
 
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
92精品国产成人观看免费 | 一区二区三区四区在线免费观看| 国产精品你懂的| 一区二区三区在线观看视频| 天天亚洲美女在线视频| 国精产品一区一区三区mba视频| 粉嫩高潮美女一区二区三区| 欧美专区日韩专区| 日韩欧美激情四射| 亚洲欧洲av在线| 视频精品一区二区| 国产超碰在线一区| 欧美亚洲高清一区| 久久亚洲私人国产精品va媚药| 亚洲男人天堂av网| 经典三级一区二区| 91黄色免费看| 欧美精品一区二| 一区av在线播放| 国产精品一区二区在线看| 91久久精品午夜一区二区| 精品奇米国产一区二区三区| 亚洲美女精品一区| 紧缚捆绑精品一区二区| 91国偷自产一区二区三区观看| 日韩欧美中文字幕一区| 亚洲欧美偷拍卡通变态| 精品一区二区免费视频| 色婷婷综合久久久久中文| 欧美不卡激情三级在线观看| 亚洲精品视频免费观看| 国产精品一级二级三级| 欧美老年两性高潮| 日韩伦理免费电影| 九九久久精品视频| 欧美美女直播网站| 日韩一区欧美一区| 国产一区二区伦理片| 9191成人精品久久| 亚洲激情第一区| 成人中文字幕电影| 日韩免费高清视频| 天涯成人国产亚洲精品一区av| 成人av免费在线播放| 精品欧美乱码久久久久久 | 欧美日韩国产中文| 成人欧美一区二区三区黑人麻豆 | 国产精品视频一二三区| 美女视频第一区二区三区免费观看网站| 色婷婷久久久亚洲一区二区三区| 国产午夜亚洲精品理论片色戒| 免费成人在线网站| 欧美日韩国产大片| 亚洲一区二区三区精品在线| 成人av影视在线观看| 久久久亚洲精华液精华液精华液 | 久久色视频免费观看| 日本91福利区| 欧美精品粉嫩高潮一区二区| 一区二区三区欧美亚洲| 99久久精品国产一区二区三区| 久久久亚洲精品一区二区三区| 久久国产三级精品| 91精品国产色综合久久久蜜香臀| 亚洲成人你懂的| 欧美午夜电影网| 亚洲精品欧美激情| 91视频在线观看| 亚洲美腿欧美偷拍| 色婷婷狠狠综合| 亚洲美女区一区| 在线一区二区视频| 亚洲精品自拍动漫在线| 色综合一个色综合| 亚洲美女精品一区| 在线观看av一区| 亚洲国产精品久久不卡毛片| 欧洲在线/亚洲| 午夜欧美电影在线观看| 欧美日韩一区二区三区视频| 亚洲小说欧美激情另类| 欧美精品久久天天躁| 肉色丝袜一区二区| 日韩欧美专区在线| 国产精品一线二线三线精华| 国产精品女主播av| 91蜜桃视频在线| 亚洲国产成人tv| 91精品婷婷国产综合久久性色| 美国毛片一区二区三区| 精品999在线播放| 国产成人综合自拍| 综合欧美一区二区三区| 91黄色在线观看| 日本欧美一区二区在线观看| 欧美成人性战久久| 成人免费高清在线观看| 亚洲欧洲日韩在线| 欧美手机在线视频| 蜜桃视频免费观看一区| 国产欧美日韩不卡| 在线亚洲高清视频| 麻豆91在线看| 中文字幕不卡在线观看| 色丁香久综合在线久综合在线观看| 亚洲成人在线观看视频| 欧美大片在线观看| 成人免费视频视频| 亚洲一卡二卡三卡四卡无卡久久| 91精品国产色综合久久久蜜香臀| 国产精品一区二区无线| 综合分类小说区另类春色亚洲小说欧美| 欧美专区日韩专区| 国产综合成人久久大片91| 国产精品国产精品国产专区不片 | 日韩精品亚洲专区| xnxx国产精品| 在线国产电影不卡| 久久国产福利国产秒拍| 国产精品国产a| 在线电影一区二区三区| 国产成人福利片| 亚洲国产日韩综合久久精品| 精品国产免费视频| 91激情在线视频| 国内成+人亚洲+欧美+综合在线| 中文字幕在线观看不卡| 欧美肥妇毛茸茸| 成人av在线资源网站| 免费不卡在线观看| 日韩伦理免费电影| 日韩精品在线网站| 日本韩国欧美一区| 国产一区二区福利| 石原莉奈在线亚洲三区| 日韩一区日韩二区| 337p日本欧洲亚洲大胆色噜噜| 在线看不卡av| 粉嫩欧美一区二区三区高清影视| 日韩在线一区二区| 中文字幕一区av| 2欧美一区二区三区在线观看视频| 欧洲一区在线观看| 国产精品2024| 日韩在线一二三区| 亚洲女人小视频在线观看| 久久青草欧美一区二区三区| 欧美日韩精品电影| 不卡的电影网站| 国产一区福利在线| 日韩av电影一区| 一区二区三区色| 亚洲欧洲精品一区二区精品久久久| 久久这里都是精品| 91精品国产美女浴室洗澡无遮挡| 91蜜桃网址入口| 成人中文字幕电影| 国产精品99久久久久久宅男| 男人的天堂亚洲一区| 亚洲高清久久久| 伊人性伊人情综合网| 国产精品系列在线| 久久久久久久性| 欧美大片在线观看一区二区| 91精品国产色综合久久不卡电影 | 午夜欧美电影在线观看| 亚洲免费观看高清完整版在线观看 | 亚洲免费av高清| 国产精品三级视频| 久久九九99视频| 久久久国产精品不卡| 欧美va亚洲va国产综合| 日韩欧美一级二级| 日韩丝袜情趣美女图片| 欧美酷刑日本凌虐凌虐| 欧美日韩综合在线| 欧美日韩一区二区在线观看| 日本二三区不卡| 欧美怡红院视频| 欧美性大战xxxxx久久久| 欧美性大战久久| 欧美日韩视频一区二区| 欧美日韩精品三区| 欧美日韩中文字幕一区二区| 欧美三级三级三级| 欧美性大战久久| 91.com在线观看| 欧美一级日韩一级| 欧美xxxxx牲另类人与| 精品国产免费久久| 久久婷婷国产综合国色天香| 久久久久高清精品| 国产欧美日韩另类一区| 欧美国产在线观看| 亚洲丝袜另类动漫二区| 亚洲夂夂婷婷色拍ww47| 亚洲成人第一页| 日韩av中文字幕一区二区| 奇米色777欧美一区二区| 国产综合色视频|