Package org.jfree.chart.renderer
Class CategoryURLGeneratorTable
java.lang.Object
org.jfree.util.ObjectTable
org.jfree.chart.renderer.CategoryURLGeneratorTable
- All Implemented Interfaces:
Serializable
public class CategoryURLGeneratorTable extends org.jfree.util.ObjectTable implements Serializable
Deprecated.
This class is no longer being used in JFreeChart and will be
removed before version 1.0.0 is released.
A lookup table for URL generators. Now based on the object table.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description CategoryURLGeneratorTable()
Deprecated.Creates a new URL generator table. -
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
Deprecated.Tests this paint table for equality with another object (typically another label generator table).CategoryURLGenerator
getURLGenerator(int row, int column)
Deprecated.Returns the URL generator object from a particular cell in the table.void
setURLGenerator(int row, int column, CategoryURLGenerator generator)
Deprecated.Sets the URL generator for a cell in the table.Methods inherited from class org.jfree.util.ObjectTable
clear, ensureCapacity, getColumnCount, getColumnIncrement, getRowCount, getRowIncrement, hashCode
-
Constructor Details
-
CategoryURLGeneratorTable
public CategoryURLGeneratorTable()Deprecated.Creates a new URL generator table.
-
-
Method Details
-
getURLGenerator
Deprecated.Returns the URL generator object from a particular cell in the table.- Parameters:
row
- the row index (zero-based).column
- the column index (zero-based).- Returns:
- The URL generator.
-
setURLGenerator
Deprecated.Sets the URL generator for a cell in the table. The table is expanded if necessary.- Parameters:
row
- the row index (zero-based).column
- the column index (zero-based).generator
- the URL generator.
-
equals
Deprecated.Tests this paint table for equality with another object (typically another label generator table).- Overrides:
equals
in classorg.jfree.util.ObjectTable
- Parameters:
o
- the other object.- Returns:
- A boolean.
-