Skip to content

Commit acf514b

Browse files
committed
Rename DefaultAbstractPlot to AbstractPlot
DefaultAbstractPlot is an abstract class that implements Plot and simplifies the implementation of Plots, it should therefor be named AbstractPlot.
1 parent 30420fd commit acf514b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/net/imagej/plot/defaultplot/DefaultAbstractPlot.java renamed to src/main/java/net/imagej/plot/defaultplot/AbstractPlot.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@
4141
* @author Matthias Arzt
4242
*/
4343

44-
abstract class DefaultAbstractPlot implements Plot {
44+
abstract class AbstractPlot implements Plot {
4545

4646
private String title;
4747

4848
private int preferredWidth;
4949

5050
private int preferredHeight;
5151

52-
DefaultAbstractPlot() {
52+
AbstractPlot() {
5353
title = "";
5454
preferredWidth = 600;
5555
preferredHeight = 400;

src/main/java/net/imagej/plot/defaultplot/DefaultCategoryChart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*
4545
* @author Matthias Arzt
4646
*/
47-
class DefaultCategoryChart<C> extends DefaultAbstractPlot implements CategoryChart<C> {
47+
class DefaultCategoryChart<C> extends AbstractPlot implements CategoryChart<C> {
4848

4949
private final Class<C> categoryType;
5050

src/main/java/net/imagej/plot/defaultplot/DefaultXYPlot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* @author Matthias Arzt
4545
*/
46-
class DefaultXYPlot extends DefaultAbstractPlot implements XYPlot {
46+
class DefaultXYPlot extends AbstractPlot implements XYPlot {
4747

4848
private final DefaultNumberAxis xAxis;
4949

0 commit comments

Comments
 (0)