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

📄 piesectionentity.java

📁 这是一个segy数据显示程序
💻 JAVA
字号:
/* =========================================================== * 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.] * * --------------------- * PieSectionEntity.java * --------------------- * (C) Copyright 2002-2004, by Object Refinery Limited. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   Richard Atkinson; *                   Christian W. Zuckschwerdt; *                    * $Id: PieSectionEntity.java,v 1.7 2004/05/20 16:14:08 mungady Exp $ * * Changes: * -------- * 23-May-2002 : Version 1 (DG); * 12-Jun-2002 : Added Javadoc comments (DG); * 26-Jun-2002 : Added method to generate AREA tag for image map generation (DG); * 05-Aug-2002 : Added new constructor to populate URLText *               Moved getImageMapAreaTag() to ChartEntity (superclass) (RA); * 03-Oct-2002 : Fixed errors reported by Checkstyle (DG); * 07-Mar-2003 : Added pie index attribute, since the PiePlot class can create multiple *               pie plots within one chart.  Also renamed 'category' --> 'sectionKey' and changed *               the class from Object --> Comparable (DG); * 30-Jul-2003 : Added PieDataset reference (CZ); * */package org.jfree.chart.entity;import java.awt.Shape;import org.jfree.data.PieDataset;/** * A chart entity that represents one section within a pie plot. */public class PieSectionEntity extends ChartEntity {    /** The dataset. */    private PieDataset dataset;        /** The pie index. */    private int pieIndex;    /** The section index. */    private int sectionIndex;    /** The section key. */    private Comparable sectionKey;    /**     * Creates a new pie section entity.     *     * @param pieIndex  the pie index (zero-based).     * @param sectionIndex  the section index (zero-based).     * @param sectionKey  the section key.     * @param area  the area.     * @param toolTipText  the tool tip text.     *      * @deprecated Use alternative constructor.     */    public PieSectionEntity(int pieIndex, int sectionIndex, Comparable sectionKey,                            Shape area, String toolTipText) {        super(area, toolTipText);        this.pieIndex = pieIndex;        this.sectionIndex = sectionIndex;        this.sectionKey = sectionKey;    }    /**     * Creates a new pie section entity.     *     * @param pieIndex  the pie index (zero-based).     * @param sectionIndex  the section index (zero-based).     * @param sectionKey  the section key.     * @param area  the area.     * @param toolTipText  the tool tip text.     * @param urlText  the URL text for HTML image maps.     *      * @deprecated Use alternative constructor.     */    public PieSectionEntity(int pieIndex, int sectionIndex, Comparable sectionKey,                            Shape area, String toolTipText, String urlText) {        super(area, toolTipText, urlText);        this.pieIndex = pieIndex;        this.sectionIndex = sectionIndex;        this.sectionKey = sectionKey;    }    /**     * Creates a new pie section entity.     *     * @param area  the area.     * @param dataset  the pie dataset.     * @param pieIndex  the pie index (zero-based).     * @param sectionIndex  the section index (zero-based).     * @param sectionKey  the section key.     * @param toolTipText  the tool tip text.     * @param urlText  the URL text for HTML image maps.     */    public PieSectionEntity(Shape area,                             PieDataset dataset,                            int pieIndex, int sectionIndex, Comparable sectionKey,                            String toolTipText, String urlText) {        super(area, toolTipText, urlText);        this.dataset = dataset;        this.pieIndex = pieIndex;        this.sectionIndex = sectionIndex;        this.sectionKey = sectionKey;    }    /**     * Returns the datset this entity refers to.     *     * @return the dataset.     */    public PieDataset getDataset() {        return this.dataset;    }    /**     * Sets the datset this entity refers to.     *     * @param dataset  the dataset.     */    public void setDataset(PieDataset dataset) {        this.dataset = dataset;    }    /**     * Returns the pie index.     * <p>     * For a regular pie chart, the section index is 0.  For a pie chart containing     * multiple pie plots, the pie index is the row or column index from which the pie data is     * extracted.     *     * @return The pie index.     */    public int getPieIndex() {        return this.pieIndex;    }    /**     * Sets the pie index.     *     * @param index  the new index value.     */    public void setPieIndex(int index) {        this.pieIndex = index;    }    /**     * Returns the section index.     *     * @return The section index.     */    public int getSectionIndex() {        return this.sectionIndex;    }    /**     * Sets the section index.     *     * @param index  the section index.     */    public void setSectionIndex(int index) {        this.sectionIndex = index;    }    /**     * Returns the section key.     *     * @return The section key.     */    public Comparable getSectionKey() {        return this.sectionKey;    }    /**     * Sets the section key.     *     * @param key  the section key.     */    public void setSectionKey(Comparable key) {        this.sectionKey = key;    }    /**     * Returns a string representing the entity.     *     * @return a string representing the entity.     */    public String toString() {        return "PieSection: " + this.pieIndex + ", " + this.sectionIndex + "("                              + this.sectionKey.toString() + ")";    }}

⌨️ 快捷键说明

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