Class BorderPainter.PathPainter
- java.lang.Object
-
- org.apache.fop.render.intermediate.BorderPainter.PathPainter
-
- Enclosing class:
- BorderPainter
private final class BorderPainter.PathPainter extends java.lang.Object
This is a helper class for constructing curves composed of move, line and arc operations. Coordinates are relative to the terminal point of the previous operation
-
-
Constructor Summary
Constructors Constructor Description PathPainter(int x, int y)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) BorderPainter.PathPainter
drawCorner(BorderPainter.Corner corner)
BorderPainter.PathPainter
lineHorizTo(int x)
BorderPainter.PathPainter
lineTo(int x, int y)
BorderPainter.PathPainter
lineVertTo(int y)
private void
moveTo(int x, int y)
-
-
-
Method Detail
-
moveTo
private void moveTo(int x, int y) throws java.io.IOException
- Throws:
java.io.IOException
-
lineTo
public BorderPainter.PathPainter lineTo(int x, int y) throws java.io.IOException
- Throws:
java.io.IOException
-
lineHorizTo
public BorderPainter.PathPainter lineHorizTo(int x) throws java.io.IOException
- Throws:
java.io.IOException
-
lineVertTo
public BorderPainter.PathPainter lineVertTo(int y) throws java.io.IOException
- Throws:
java.io.IOException
-
drawCorner
BorderPainter.PathPainter drawCorner(BorderPainter.Corner corner) throws java.io.IOException
- Throws:
java.io.IOException
-
-