Skip to content

Commit

Permalink
Remove @SInCE tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jfree committed Feb 21, 2021
1 parent d709c89 commit 1183bfe
Show file tree
Hide file tree
Showing 24 changed files with 27 additions and 440 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,80 +95,58 @@ public class DefaultPolarItemRenderer extends AbstractRenderer
/**
* Flag that controls whether an outline is drawn for filled series or
* not.
*
* @since 1.0.14
*/
private boolean drawOutlineWhenFilled;

/**
* The composite to use when filling series.
*
* @since 1.0.14
*/
private transient Composite fillComposite;

/**
* A flag that controls whether the fill paint is used for filling
* shapes.
*
* @since 1.0.14
*/
private boolean useFillPaint;

/**
* The shape that is used to represent a line in the legend.
*
* @since 1.0.14
*/
private transient Shape legendLine;

/**
* Flag that controls whether item shapes are visible or not.
*
* @since 1.0.14
*/
private boolean shapesVisible;

/**
* Flag that controls if the first and last point of the dataset should be
* connected or not.
*
* @since 1.0.14
*/
private boolean connectFirstAndLastPoint;

/**
* A list of tool tip generators (one per series).
*
* @since 1.0.14
*/
private ObjectList toolTipGeneratorList;

/**
* The base tool tip generator.
*
* @since 1.0.14
*/
private XYToolTipGenerator baseToolTipGenerator;

/**
* The URL text generator.
*
* @since 1.0.14
*/
private XYURLGenerator urlGenerator;

/**
* The legend item tool tip generator.
*
* @since 1.0.14
*/
private XYSeriesLabelGenerator legendItemToolTipGenerator;

/**
* The legend item URL generator.
*
* @since 1.0.14
*/
private XYSeriesLabelGenerator legendItemURLGenerator;

Expand Down Expand Up @@ -220,8 +198,6 @@ public PolarPlot getPlot() {
* a filled polygon, {@code false} otherwise.
*
* @return A boolean.
*
* @since 1.0.14
*/
public boolean getDrawOutlineWhenFilled() {
return this.drawOutlineWhenFilled;
Expand All @@ -233,8 +209,6 @@ public boolean getDrawOutlineWhenFilled() {
* to all registered listeners.
*
* @param drawOutlineWhenFilled the flag.
*
* @since 1.0.14
*/
public void setDrawOutlineWhenFilled(boolean drawOutlineWhenFilled) {
this.drawOutlineWhenFilled = drawOutlineWhenFilled;
Expand All @@ -245,8 +219,6 @@ public void setDrawOutlineWhenFilled(boolean drawOutlineWhenFilled) {
* Get the composite that is used for filling.
*
* @return The composite (never {@code null}).
*
* @since 1.0.14
*/
public Composite getFillComposite() {
return this.fillComposite;
Expand All @@ -258,8 +230,6 @@ public Composite getFillComposite() {
*
* @param composite the composite to use ({@code null} not
* permitted).
*
* @since 1.0.14
*/
public void setFillComposite(Composite composite) {
Args.nullNotPermitted(composite, "composite");
Expand All @@ -272,8 +242,6 @@ public void setFillComposite(Composite composite) {
* {@code false} if not.
*
* @return A boolean.
*
* @since 1.0.14
*/
public boolean getShapesVisible() {
return this.shapesVisible;
Expand All @@ -285,8 +253,6 @@ public boolean getShapesVisible() {
* listeners.
*
* @param visible the flag.
*
* @since 1.0.14
*/
public void setShapesVisible(boolean visible) {
this.shapesVisible = visible;
Expand All @@ -298,8 +264,6 @@ public void setShapesVisible(boolean visible) {
* connected, {@code false} otherwise.
*
* @return The current status of the flag.
*
* @since 1.0.14
*/
public boolean getConnectFirstAndLastPoint() {
return this.connectFirstAndLastPoint;
Expand All @@ -311,8 +275,6 @@ public boolean getConnectFirstAndLastPoint() {
* registered listeners.
*
* @param connect the flag.
*
* @since 1.0.14
*/
public void setConnectFirstAndLastPoint(boolean connect) {
this.connectFirstAndLastPoint = connect;
Expand Down Expand Up @@ -369,7 +331,6 @@ public void setSeriesFilled(int series, boolean filled) {
* @return A boolean.
*
* @see #setUseFillPaint(boolean)
* @since 1.0.14
*/
public boolean getUseFillPaint() {
return this.useFillPaint;
Expand All @@ -383,7 +344,6 @@ public boolean getUseFillPaint() {
* @param flag the flag.
*
* @see #getUseFillPaint()
* @since 1.0.14
*/
public void setUseFillPaint(boolean flag) {
this.useFillPaint = flag;
Expand Down Expand Up @@ -717,8 +677,6 @@ public LegendItem getLegendItem(int series) {
* @param item the item index.
*
* @return The tooltip generator (possibly {@code null}).
*
* @since 1.0.14
*/
@Override
public XYToolTipGenerator getToolTipGenerator(int series, int item) {
Expand All @@ -734,8 +692,6 @@ public XYToolTipGenerator getToolTipGenerator(int series, int item) {
* Returns the tool tip generator for the specified series.
*
* @return The tooltip generator (possibly {@code null}).
*
* @since 1.0.14
*/
@Override
public XYToolTipGenerator getSeriesToolTipGenerator(int series) {
Expand All @@ -747,8 +703,6 @@ public XYToolTipGenerator getSeriesToolTipGenerator(int series) {
*
* @param series the series index.
* @param generator the tool tip generator ({@code null} permitted).
*
* @since 1.0.14
*/
@Override
public void setSeriesToolTipGenerator(int series,
Expand All @@ -761,8 +715,6 @@ public void setSeriesToolTipGenerator(int series,
* Returns the default tool tip generator.
*
* @return The default tool tip generator (possibly {@code null}).
*
* @since 1.0.14
*/
@Override
public XYToolTipGenerator getBaseToolTipGenerator() {
Expand All @@ -774,8 +726,6 @@ public XYToolTipGenerator getBaseToolTipGenerator() {
* {@link RendererChangeEvent} to all registered listeners.
*
* @param generator the generator ({@code null} permitted).
*
* @since 1.0.14
*/
@Override
public void setBaseToolTipGenerator(XYToolTipGenerator generator) {
Expand All @@ -787,8 +737,6 @@ public void setBaseToolTipGenerator(XYToolTipGenerator generator) {
* Returns the URL generator.
*
* @return The URL generator (possibly {@code null}).
*
* @since 1.0.14
*/
@Override
public XYURLGenerator getURLGenerator() {
Expand All @@ -799,8 +747,6 @@ public XYURLGenerator getURLGenerator() {
* Sets the URL generator.
*
* @param urlGenerator the generator ({@code null} permitted)
*
* @since 1.0.14
*/
@Override
public void setURLGenerator(XYURLGenerator urlGenerator) {
Expand All @@ -814,7 +760,6 @@ public void setURLGenerator(XYURLGenerator urlGenerator) {
* @return The tool tip generator (possibly {@code null}).
*
* @see #setLegendItemToolTipGenerator(XYSeriesLabelGenerator)
* @since 1.0.14
*/
public XYSeriesLabelGenerator getLegendItemToolTipGenerator() {
return this.legendItemToolTipGenerator;
Expand All @@ -827,7 +772,6 @@ public XYSeriesLabelGenerator getLegendItemToolTipGenerator() {
* @param generator the generator ({@code null} permitted).
*
* @see #getLegendItemToolTipGenerator()
* @since 1.0.14
*/
public void setLegendItemToolTipGenerator(
XYSeriesLabelGenerator generator) {
Expand All @@ -841,7 +785,6 @@ public void setLegendItemToolTipGenerator(
* @return The URL generator (possibly {@code null}).
*
* @see #setLegendItemURLGenerator(XYSeriesLabelGenerator)
* @since 1.0.14
*/
public XYSeriesLabelGenerator getLegendItemURLGenerator() {
return this.legendItemURLGenerator;
Expand All @@ -854,7 +797,6 @@ public XYSeriesLabelGenerator getLegendItemURLGenerator() {
* @param generator the generator ({@code null} permitted).
*
* @see #getLegendItemURLGenerator()
* @since 1.0.14
*/
public void setLegendItemURLGenerator(XYSeriesLabelGenerator generator) {
this.legendItemURLGenerator = generator;
Expand Down
Loading

0 comments on commit 1183bfe

Please sign in to comment.