?? piesectionentity.java
字號:
/* ======================================
* JFreeChart : a free Java chart library
* ======================================
*
* Project Info: http://www.jfree.org/jfreechart/index.html
* Project Lead: David Gilbert (david.gilbert@object-refinery.com);
*
* (C) Copyright 2000-2003, by Object Refinery Limited and Contributors.
*
* 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.
*
* ---------------------
* PieSectionEntity.java
* ---------------------
* (C) Copyright 2002, 2003, by Object Refinery Limited.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): Richard Atkinson;
* Christian W. Zuckschwerdt;
*
* $Id: PieSectionEntity.java,v 1.4 2003/07/30 15:35:03 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.
*
* @author David Gilbert
*/
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 + -