Package net.sf.jasperreports.pdf.common
Interface PdfContent
-
- All Known Implementing Classes:
ClassicPdfContent
public interface PdfContent
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
fillEllipse(float x1, float y1, float x2, float y2)
void
fillRectangle(float x, float y, float width, float height)
void
fillRoundRectangle(float x, float y, float width, float height, float radius)
void
resetFillColor()
void
resetStrokeColor()
void
setFillColor(Color color)
void
setFillColorAlpha(int alpha)
void
setLineCap(LineCapStyle lineCap)
void
setLineDash(float f)
void
setLineDash(float lineWidth, float lineWidth2, float f)
void
setLineWidth(float lineWidth)
void
setLiteral(String string)
void
setStrokeColor(Color color)
void
strokeEllipse(float x1, float y1, float x2, float y2)
void
strokeLine(float x1, float y1, float x2, float y2)
void
strokeRoundRectangle(float x, float y, float width, float height, float radius)
void
transform(AffineTransform atrans)
-
-
-
Method Detail
-
setFillColor
void setFillColor(Color color)
-
setFillColorAlpha
void setFillColorAlpha(int alpha)
-
resetFillColor
void resetFillColor()
-
setStrokeColor
void setStrokeColor(Color color)
-
resetStrokeColor
void resetStrokeColor()
-
setLineWidth
void setLineWidth(float lineWidth)
-
setLineCap
void setLineCap(LineCapStyle lineCap)
-
setLineDash
void setLineDash(float f)
-
setLineDash
void setLineDash(float lineWidth, float lineWidth2, float f)
-
strokeLine
void strokeLine(float x1, float y1, float x2, float y2)
-
fillRectangle
void fillRectangle(float x, float y, float width, float height)
-
fillRoundRectangle
void fillRoundRectangle(float x, float y, float width, float height, float radius)
-
strokeRoundRectangle
void strokeRoundRectangle(float x, float y, float width, float height, float radius)
-
fillEllipse
void fillEllipse(float x1, float y1, float x2, float y2)
-
strokeEllipse
void strokeEllipse(float x1, float y1, float x2, float y2)
-
setLiteral
void setLiteral(String string)
-
transform
void transform(AffineTransform atrans)
-
-