Save This Page
Home » jcommon-1.0.13 » org.jfree » chart » urls » [javadoc | source]
org.jfree.chart.urls
public class: StandardXYURLGenerator [javadoc | source]
java.lang.Object
   org.jfree.chart.urls.StandardXYURLGenerator

All Implemented Interfaces:
    XYURLGenerator, Serializable

Direct Known Subclasses:
    StandardXYZURLGenerator

A URL generator.
Field Summary
public static final  String DEFAULT_PREFIX    The default prefix. 
public static final  String DEFAULT_SERIES_PARAMETER    The default series parameter. 
public static final  String DEFAULT_ITEM_PARAMETER    The default item parameter. 
Constructor:
 public 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).
 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 from org.jfree.chart.urls.StandardXYURLGenerator Summary:
equals,   generateURL
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.jfree.chart.urls.StandardXYURLGenerator Detail:
 public boolean equals(Object obj) 
    Tests this generator for equality with an arbitrary object.
 public String generateURL(XYDataset dataset,
    int series,
    int item) 
    Generates a URL for a particular item within a series.