Package org.jfree.chart.urls
Interface CategoryURLGenerator
- All Known Implementing Classes:
StandardCategoryURLGenerator
public interface CategoryURLGenerator
A URL generator for items in a
CategoryDataset
.- Author:
- Richard Atkinson
-
Method Summary
Modifier and Type Method Description Object
clone()
Returns an independent copy of the URL generator.String
generateURL(CategoryDataset data, int series, int category)
Returns a URL for one item in a dataset.
-
Method Details
-
generateURL
Returns a URL for one item in a dataset.- Parameters:
data
- the dataset.series
- the series (zero-based index).category
- the category.- Returns:
- a string containing the URL.
-
clone
Returns an independent copy of the URL generator.- Returns:
- A clone.
- Throws:
CloneNotSupportedException
- if the generator does not support cloning.
-