-
public class SeriesBundle<SeriesType extends Series, FormatterType extends Formatter>
Defines a relationship between a Series instance and other elements needed to unique render that instance such as a Formatter etc.
-
-
Field Summary
Fields Modifier and Type Field Description private final SeriesType
series
private final FormatterType
formatter
-
Constructor Summary
Constructors Constructor Description SeriesBundle(SeriesType series, FormatterType formatter)
-
Method Summary
Modifier and Type Method Description SeriesType
getSeries()
FormatterType
getFormatter()
boolean
rendersWith(SeriesRenderer renderer)
-
-
Constructor Detail
-
SeriesBundle
SeriesBundle(SeriesType series, FormatterType formatter)
-
-
Method Detail
-
getSeries
SeriesType getSeries()
-
getFormatter
FormatterType getFormatter()
-
rendersWith
boolean rendersWith(SeriesRenderer renderer)
-
-
-
-