| java.lang.Object org.jfree.chart.urls.StandardPieURLGenerator
StandardPieURLGenerator | public class StandardPieURLGenerator implements PieURLGenerator,Serializable(Code) | | A URL generator for pie charts. Instances of this class are immutable.
|
Method Summary | |
public boolean | equals(Object obj) Tests if this object is equal to another.
Parameters: obj - the object (null permitted). | public String | generateURL(PieDataset dataset, Comparable key, int pieIndex) Generates a URL.
Parameters: dataset - the dataset (ignored). Parameters: key - the item key (null not permitted). Parameters: pieIndex - the pie index. |
StandardPieURLGenerator | public StandardPieURLGenerator()(Code) | | Default constructor.
|
StandardPieURLGenerator | public StandardPieURLGenerator(String prefix)(Code) | | Creates a new generator.
Parameters: prefix - the prefix (null not permitted). |
StandardPieURLGenerator | public StandardPieURLGenerator(String prefix, String categoryParameterName)(Code) | | Creates a new generator.
Parameters: prefix - the prefix (null not permitted). Parameters: categoryParameterName - the category parameter name (null not permitted). |
StandardPieURLGenerator | public StandardPieURLGenerator(String prefix, String categoryParameterName, String indexParameterName)(Code) | | Creates a new generator.
Parameters: prefix - the prefix (null not permitted). Parameters: categoryParameterName - the category parameter name (null not permitted). Parameters: indexParameterName - the index parameter name (null permitted). |
equals | public boolean equals(Object obj)(Code) | | Tests if this object is equal to another.
Parameters: obj - the object (null permitted). A boolean. |
generateURL | public String generateURL(PieDataset dataset, Comparable key, int pieIndex)(Code) | | Generates a URL.
Parameters: dataset - the dataset (ignored). Parameters: key - the item key (null not permitted). Parameters: pieIndex - the pie index. A string containing the generated URL. |
|
|