Package org.jfree.chart.labels
Class StandardCategoryToolTipGenerator
java.lang.Object
org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
org.jfree.chart.labels.StandardCategoryToolTipGenerator
- All Implemented Interfaces:
Serializable,Cloneable,CategoryToolTipGenerator,PublicCloneable
- Direct Known Subclasses:
BoxAndWhiskerToolTipGenerator,IntervalCategoryToolTipGenerator
public class StandardCategoryToolTipGenerator
extends AbstractCategoryItemLabelGenerator
implements CategoryToolTipGenerator, Serializable
A standard tool tip generator that can be used with a
CategoryItemRenderer.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new generator with a default number formatter.StandardCategoryToolTipGenerator(String labelFormat, DateFormat formatter) Creates a new generator with the specified date formatter.StandardCategoryToolTipGenerator(String labelFormat, NumberFormat formatter) Creates a new generator with the specified number formatter. -
Method Summary
Modifier and TypeMethodDescriptionbooleanEnsures symmetry between super/subclass implementations of equals.booleanTests this generator for equality with an arbitrary object.generateToolTip(CategoryDataset dataset, int row, int column) Generates the tool tip text for an item in a dataset.inthashCode()Returns a hash code for this instance.Methods inherited from class org.jfree.chart.labels.AbstractCategoryItemLabelGenerator
clone, createItemArray, generateColumnLabel, generateLabelString, generateRowLabel, getDateFormat, getLabelFormat, getNumberFormat
-
Field Details
-
DEFAULT_TOOL_TIP_FORMAT_STRING
The default format string.- See Also:
-
-
Constructor Details
-
StandardCategoryToolTipGenerator
public StandardCategoryToolTipGenerator()Creates a new generator with a default number formatter. -
StandardCategoryToolTipGenerator
Creates a new generator with the specified number formatter.- Parameters:
labelFormat- the label format string (nullnot permitted).formatter- the number formatter (nullnot permitted).
-
StandardCategoryToolTipGenerator
Creates a new generator with the specified date formatter.- Parameters:
labelFormat- the label format string (nullnot permitted).formatter- the date formatter (nullnot permitted).
-
-
Method Details
-
generateToolTip
Generates the tool tip text for an item in a dataset. Note: in the current dataset implementation, each row is a series, and each column contains values for a particular category.- Specified by:
generateToolTipin interfaceCategoryToolTipGenerator- Parameters:
dataset- the dataset (nullnot permitted).row- the row index (zero-based).column- the column index (zero-based).- Returns:
- The tooltip text (possibly
null).
-
equals
Tests this generator for equality with an arbitrary object.- Overrides:
equalsin classAbstractCategoryItemLabelGenerator- Parameters:
obj- the object (nullpermitted).- Returns:
- A boolean.
-
canEqual
Ensures symmetry between super/subclass implementations of equals. For more detail, see http://jqno.nl/equalsverifier/manual/inheritance.- Overrides:
canEqualin classAbstractCategoryItemLabelGenerator- Parameters:
other- Object- Returns:
- true ONLY if the parameter is THIS class type
-
hashCode
Description copied from class:AbstractCategoryItemLabelGeneratorReturns a hash code for this instance.- Overrides:
hashCodein classAbstractCategoryItemLabelGenerator- Returns:
- A hash code.
-