| java.lang.Object org.jfree.chart.urls.StandardCategoryURLGenerator
Method Summary | |
public Object | clone() Returns an independent copy of the URL generator. | public boolean | equals(Object obj) Tests the generator for equality with an arbitrary object.
Parameters: obj - the object (null permitted). | public String | generateURL(CategoryDataset dataset, int series, int category) Generates a URL for a particular item within a series.
Parameters: dataset - the dataset. Parameters: series - the series index (zero-based). Parameters: category - the category index (zero-based). | public int | hashCode() Returns a hash code. |
StandardCategoryURLGenerator | public StandardCategoryURLGenerator()(Code) | | Creates a new generator with default settings.
|
StandardCategoryURLGenerator | public StandardCategoryURLGenerator(String prefix)(Code) | | Constructor that overrides default prefix to the URL.
Parameters: prefix - the prefix to the URL (null not permitted). |
StandardCategoryURLGenerator | public StandardCategoryURLGenerator(String prefix, String seriesParameterName, String categoryParameterName)(Code) | | Constructor that overrides all the defaults.
Parameters: prefix - the prefix to the URL (null not permitted). Parameters: seriesParameterName - the name of the series parameter to go in each URL (null not permitted). Parameters: categoryParameterName - the name of the category parameter to go ineach URL (null not permitted). |
equals | public boolean equals(Object obj)(Code) | | Tests the generator for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
generateURL | public String generateURL(CategoryDataset dataset, int series, int category)(Code) | | Generates a URL for a particular item within a series.
Parameters: dataset - the dataset. Parameters: series - the series index (zero-based). Parameters: category - the category index (zero-based). The generated URL. |
hashCode | public int hashCode()(Code) | | Returns a hash code.
A hash code. |
|
|