Class StandardXYURLGenerator

java.lang.Object
org.jfree.chart.urls.StandardXYURLGenerator
All Implemented Interfaces:
Serializable, XYURLGenerator
Direct Known Subclasses:
StandardXYZURLGenerator

public class StandardXYURLGenerator
extends Object
implements XYURLGenerator, Serializable
A URL generator.
See Also:
Serialized Form
  • Field Details

  • Constructor Details

    • StandardXYURLGenerator

      Creates a new default generator. This constructor is equivalent to calling StandardXYURLGenerator("index.html", "series", "item");.
    • StandardXYURLGenerator

      public StandardXYURLGenerator​(String prefix)
      Creates a new generator with the specified prefix. This constructor is equivalent to calling StandardXYURLGenerator(prefix, "series", "item");.
      Parameters:
      prefix - the prefix to the URL (null not permitted).
    • StandardXYURLGenerator

      public StandardXYURLGenerator​(String prefix, String seriesParameterName, String itemParameterName)
      Constructor that overrides all the defaults
      Parameters:
      prefix - the prefix to the URL (null not permitted).
      seriesParameterName - the name of the series parameter to go in each URL (null not permitted).
      itemParameterName - the name of the item parameter to go in each URL (null not permitted).
  • Method Details

    • generateURL

      public String generateURL​(XYDataset dataset, int series, int item)
      Generates a URL for a particular item within a series.
      Specified by:
      generateURL in interface XYURLGenerator
      Parameters:
      dataset - the dataset.
      series - the series number (zero-based index).
      item - the item number (zero-based index).
      Returns:
      The generated URL.
    • equals

      public boolean equals​(Object obj)
      Tests this generator for equality with an arbitrary object.
      Overrides:
      equals in class Object
      Parameters:
      obj - the object (null permitted).
      Returns:
      A boolean.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object