Package com.sun.pdfview
Class PDFRenderer.GraphicsState
- java.lang.Object
-
- com.sun.pdfview.PDFRenderer.GraphicsState
-
- All Implemented Interfaces:
java.lang.Cloneable
- Enclosing class:
- PDFRenderer
class PDFRenderer.GraphicsState extends java.lang.Object implements java.lang.Cloneable
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.awt.Shape
cliprgn
the clip region(package private) java.awt.AlphaComposite
fillAlpha
the current compositing alpha for filling(package private) PDFPaint
fillPaint
the current paint for filling shapes(package private) java.awt.BasicStroke
stroke
the current stroke(package private) java.awt.AlphaComposite
strokeAlpha
the current compositing alpha for stroking(package private) PDFPaint
strokePaint
the current paint for drawing strokes(package private) java.awt.geom.AffineTransform
xform
the current transform
-
Constructor Summary
Constructors Constructor Description GraphicsState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
Clone this Graphics state.
-
-
-
Field Detail
-
cliprgn
java.awt.Shape cliprgn
the clip region
-
stroke
java.awt.BasicStroke stroke
the current stroke
-
strokePaint
PDFPaint strokePaint
the current paint for drawing strokes
-
fillPaint
PDFPaint fillPaint
the current paint for filling shapes
-
strokeAlpha
java.awt.AlphaComposite strokeAlpha
the current compositing alpha for stroking
-
fillAlpha
java.awt.AlphaComposite fillAlpha
the current compositing alpha for filling
-
xform
java.awt.geom.AffineTransform xform
the current transform
-
-