📄 legenditem.java
字号:
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (C) Copyright 2000-2007, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ---------------
* LegendItem.java
* ---------------
* (C) Copyright 2000-2007, by Object Refinery Limited and Contributors.
*
* Original Author: David Gilbert (for Object Refinery Limited);
* Contributor(s): Andrzej Porebski;
* David Li;
* Wolfgang Irler;
* Luke Quinane;
*
* $Id: LegendItem.java,v 1.9.2.7 2007/05/18 10:28:17 mungady Exp $
*
* Changes (from 2-Oct-2002)
* -------------------------
* 02-Oct-2002 : Fixed errors reported by Checkstyle (DG);
* 17-Jan-2003 : Dropped outlineStroke attribute (DG);
* 08-Oct-2003 : Applied patch for displaying series line style, contributed by
* Luke Quinane (DG);
* 21-Jan-2004 : Added the shapeFilled flag (DG);
* 04-Jun-2004 : Added equals() method, implemented Serializable (DG);
* 25-Nov-2004 : Changes required by new LegendTitle implementation (DG);
* 11-Jan-2005 : Removed deprecated code in preparation for the 1.0.0
* release (DG);
* 20-Apr-2005 : Added tooltip and URL text (DG);
* 28-Nov-2005 : Separated constructors for AttributedString labels (DG);
* 10-Dec-2005 : Fixed serialization bug (1377239) (DG);
* ------------- JFREECHART 1.0.x ---------------------------------------------
* 20-Jul-2006 : Added dataset and series index fields (DG);
* 13-Dec-2006 : Added fillPaintTransformer attribute (DG);
* 18-May-2007 : Added dataset and seriesKey fields (DG);
*
*/
package org.jfree.chart;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Paint;
import java.awt.Shape;
import java.awt.Stroke;
import java.awt.geom.Line2D;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.text.AttributedString;
import java.text.CharacterIterator;
import org.jfree.data.general.Dataset;
import org.jfree.io.SerialUtilities;
import org.jfree.ui.GradientPaintTransformer;
import org.jfree.ui.StandardGradientPaintTransformer;
import org.jfree.util.AttributedStringUtilities;
import org.jfree.util.ObjectUtilities;
import org.jfree.util.ShapeUtilities;
/**
* A temporary storage object for recording the properties of a legend item,
* without any consideration for layout issues.
*/
public class LegendItem implements Serializable {
/** For serialization. */
private static final long serialVersionUID = -797214582948827144L;
/**
* The dataset.
*
* @since 1.0.6
*/
private Dataset dataset;
/**
* The series key.
*
* @since 1.0.6
*/
private Comparable seriesKey;
/** The dataset index. */
private int datasetIndex;
/** The series index. */
private int series;
/** The label. */
private String label;
/** The attributed label (if null, fall back to the regular label). */
private transient AttributedString attributedLabel;
/**
* The description (not currently used - could be displayed as a tool tip).
*/
private String description;
/** The tool tip text. */
private String toolTipText;
/** The url text. */
private String urlText;
/** A flag that controls whether or not the shape is visible. */
private boolean shapeVisible;
/** The shape. */
private transient Shape shape;
/** A flag that controls whether or not the shape is filled. */
private boolean shapeFilled;
/** The paint. */
private transient Paint fillPaint;
/**
* A gradient paint transformer.
*
* @since 1.0.4
*/
private GradientPaintTransformer fillPaintTransformer;
/** A flag that controls whether or not the shape outline is visible. */
private boolean shapeOutlineVisible;
/** The outline paint. */
private transient Paint outlinePaint;
/** The outline stroke. */
private transient Stroke outlineStroke;
/** A flag that controls whether or not the line is visible. */
private boolean lineVisible;
/** The line. */
private transient Shape line;
/** The stroke. */
private transient Stroke lineStroke;
/** The line paint. */
private transient Paint linePaint;
/**
* The shape must be non-null for a LegendItem - if no shape is required,
* use this.
*/
private static final Shape UNUSED_SHAPE = new Line2D.Float();
/**
* The stroke must be non-null for a LegendItem - if no stroke is required,
* use this.
*/
private static final Stroke UNUSED_STROKE = new BasicStroke(0.0f);
/**
* Creates a legend item with a filled shape. The shape is not outlined,
* and no line is visible.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param shape the shape (<code>null</code> not permitted).
* @param fillPaint the paint used to fill the shape (<code>null</code>
* not permitted).
*/
public LegendItem(String label, String description,
String toolTipText, String urlText,
Shape shape, Paint fillPaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */ true, shape,
/* shape filled = */ true, fillPaint,
/* shape outlined */ false, Color.black, UNUSED_STROKE,
/* line visible */ false, UNUSED_SHAPE, UNUSED_STROKE,
Color.black);
}
/**
* Creates a legend item with a filled and outlined shape.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param shape the shape (<code>null</code> not permitted).
* @param fillPaint the paint used to fill the shape (<code>null</code>
* not permitted).
* @param outlineStroke the outline stroke (<code>null</code> not
* permitted).
* @param outlinePaint the outline paint (<code>null</code> not
* permitted).
*/
public LegendItem(String label, String description,
String toolTipText, String urlText,
Shape shape, Paint fillPaint,
Stroke outlineStroke, Paint outlinePaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */ true, shape,
/* shape filled = */ true, fillPaint,
/* shape outlined = */ true, outlinePaint, outlineStroke,
/* line visible */ false, UNUSED_SHAPE, UNUSED_STROKE,
Color.black);
}
/**
* Creates a legend item using a line.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (<code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param line the line (<code>null</code> not permitted).
* @param lineStroke the line stroke (<code>null</code> not permitted).
* @param linePaint the line paint (<code>null</code> not permitted).
*/
public LegendItem(String label, String description,
String toolTipText, String urlText,
Shape line, Stroke lineStroke, Paint linePaint) {
this(label, description, toolTipText, urlText,
/* shape visible = */ false, UNUSED_SHAPE,
/* shape filled = */ false, Color.black,
/* shape outlined = */ false, Color.black, UNUSED_STROKE,
/* line visible = */ true, line, lineStroke, linePaint);
}
/**
* Creates a new legend item.
*
* @param label the label (<code>null</code> not permitted).
* @param description the description (not currently used,
* <code>null</code> permitted).
* @param toolTipText the tool tip text (<code>null</code> permitted).
* @param urlText the URL text (<code>null</code> permitted).
* @param shapeVisible a flag that controls whether or not the shape is
* displayed.
* @param shape the shape (<code>null</code> permitted).
* @param shapeFilled a flag that controls whether or not the shape is
* filled.
* @param fillPaint the fill paint (<code>null</code> not permitted).
* @param shapeOutlineVisible a flag that controls whether or not the
* shape is outlined.
* @param outlinePaint the outline paint (<code>null</code> not permitted).
* @param outlineStroke the outline stroke (<code>null</code> not
* permitted).
* @param lineVisible a flag that controls whether or not the line is
* visible.
* @param line the line.
* @param lineStroke the stroke (<code>null</code> not permitted).
* @param linePaint the line paint (<code>null</code> not permitted).
*/
public LegendItem(String label, String description,
String toolTipText, String urlText,
boolean shapeVisible, Shape shape,
boolean shapeFilled, Paint fillPaint,
boolean shapeOutlineVisible, Paint outlinePaint,
Stroke outlineStroke,
boolean lineVisible, Shape line,
Stroke lineStroke, Paint linePaint) {
if (label == null) {
throw new IllegalArgumentException("Null 'label' argument.");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -