Interface PathFactory
- 
- All Known Implementing Classes:
- DefaultFactories
 
 public interface PathFactory
- 
- 
Field SummaryFields Modifier and Type Field Description static intPDFBevelJoinstatic intPDFButtLineCapLine style constants.static intPDFMiterJoinstatic intPDFRoundJoinstatic intPDFRoundLineCapstatic intPDFSquareLineCap
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.geom.GeneralPathcreateEmptyPath()Initialize and return a new empty path.java.awt.StrokecreateStroke(PDFGState g)Create a Stroke object using the linecap,linejoin,linewidth,dashpattern, etc from the gstate.
 
- 
- 
- 
Field Detail- 
PDFButtLineCapstatic final int PDFButtLineCap Line style constants. The following constants are the values as they appear in a pdf file, as well as the legal values int the PDFGState- See Also:
- Constant Field Values
 
 - 
PDFRoundLineCapstatic final int PDFRoundLineCap - See Also:
- Constant Field Values
 
 - 
PDFSquareLineCapstatic final int PDFSquareLineCap - See Also:
- Constant Field Values
 
 - 
PDFMiterJoinstatic final int PDFMiterJoin - See Also:
- Constant Field Values
 
 - 
PDFRoundJoinstatic final int PDFRoundJoin - See Also:
- Constant Field Values
 
 - 
PDFBevelJoinstatic final int PDFBevelJoin - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
createEmptyPathjava.awt.geom.GeneralPath createEmptyPath() Initialize and return a new empty path. This path may be used as either the current path or the clipping path.
 - 
createStrokejava.awt.Stroke createStroke(PDFGState g) Create a Stroke object using the linecap,linejoin,linewidth,dashpattern, etc from the gstate. Like all objects created by the factories, the parser just creates them and passes them through to the page markup handler, which can choose to use as much or as little as it wants from them.
 
- 
 
-