From 5de50e85027df695f0d3d9356f7f684ba464ed1d Mon Sep 17 00:00:00 2001 From: Peter Hancock Date: Tue, 23 Oct 2012 08:54:57 +0000 Subject: [PATCH] Removed a Cast git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_RoundedCorners@1401202 13f79535-47bb-0310-9956-ffa450edef68 --- .../intermediate/BorderPainterTestCase.java | 39 ++++++++++++------- 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/test/java/org/apache/fop/render/intermediate/BorderPainterTestCase.java b/test/java/org/apache/fop/render/intermediate/BorderPainterTestCase.java index fab6e0f4c..ab5c18c9e 100644 --- a/test/java/org/apache/fop/render/intermediate/BorderPainterTestCase.java +++ b/test/java/org/apache/fop/render/intermediate/BorderPainterTestCase.java @@ -154,8 +154,6 @@ public class BorderPainterTestCase { protected final BorderPainter sut; - private final T thisInstance; - private final BorderPropsBuilder beforeBuilder; private final BorderPropsBuilder afterBuilder; @@ -165,19 +163,20 @@ public class BorderPainterTestCase { private final BorderPropsBuilder endBuilder; public BorderPainterTester(int xOrigin, int yOrigin, int width, int height) { - this.thisInstance = (T) this; if (width <= 0 || height <= 0) { throw new IllegalArgumentException("Cannot test degenerate borders"); } - beforeBuilder = new BorderPropsBuilder(this.thisInstance); - afterBuilder = new BorderPropsBuilder(this.thisInstance); - startBuilder = new BorderPropsBuilder(this.thisInstance); - endBuilder = new BorderPropsBuilder(this.thisInstance); + beforeBuilder = new BorderPropsBuilder(getThis()); + afterBuilder = new BorderPropsBuilder(getThis()); + startBuilder = new BorderPropsBuilder(getThis()); + endBuilder = new BorderPropsBuilder(getThis()); this.borderExtent = new Rectangle(xOrigin, yOrigin, width, height); this.graphicsPainter = mock(GraphicsPainter.class); this.sut = new BorderPainter(graphicsPainter); } + protected abstract T getThis(); + public BorderPropsBuilder beforeBorder() { return beforeBuilder; } @@ -199,7 +198,7 @@ public class BorderPainterTestCase { endBuilder.setWidth(width); afterBuilder.setWidth(width); startBuilder.setWidth(width); - return thisInstance; + return getThis(); } public T setCornerRadii(int radius) { @@ -211,31 +210,31 @@ public class BorderPainterTestCase { setEndBefore(xRadius, yRadius); setEndAfter(xRadius, yRadius); setStartAfter(xRadius, yRadius); - return thisInstance; + return getThis(); } public T setStartBefore(int xRadius, int yRadius) { startBuilder.setRadiusStart(xRadius); beforeBuilder.setRadiusStart(yRadius); - return thisInstance; + return getThis(); } public T setEndBefore(int xRadius, int yRadius) { endBuilder.setRadiusStart(xRadius); beforeBuilder.setRadiusEnd(yRadius); - return thisInstance; + return getThis(); } public T setEndAfter(int xRadius, int yRadius) { endBuilder.setRadiusEnd(xRadius); afterBuilder.setRadiusEnd(yRadius); - return thisInstance; + return getThis(); } public T setStartAfter(int xRadius, int yRadius) { startBuilder.setRadiusEnd(xRadius); afterBuilder.setRadiusStart(yRadius); - return thisInstance; + return getThis(); } public final void test() throws IOException { @@ -383,7 +382,11 @@ public class BorderPainterTestCase { verify(graphicsPainter, times(numBorders)).closePath(); verify(graphicsPainter, times(numBorders)).restoreGraphicsState(); verify(graphicsPainter, times(numBorders)).clip(); + } + @Override + protected DrawRectangularBordersTester getThis() { + return this; } } @@ -462,6 +465,11 @@ public class BorderPainterTestCase { return yWidth > yRadius ? yWidth : xWidth > 0 ? Math.max(xRadius, xWidth) : 0; } + @Override + protected DrawRoundedBordersTester getThis() { + return this; + } + } private static final class ClipBackgroundTester extends BorderPainterTester { @@ -559,6 +567,11 @@ public class BorderPainterTestCase { } } } + + @Override + protected ClipBackgroundTester getThis() { + return this; + } } -- 2.39.5