public abstract class FormGenerator
extends java.lang.Object
Constructor and Description |
---|
FormGenerator(java.lang.String formName,
java.lang.String title,
java.awt.geom.Dimension2D dimensions)
Main constructor.
|
Modifier and Type | Method and Description |
---|---|
PSResource |
generate(PSGenerator gen)
Generates the PostScript form.
|
protected void |
generateAdditionalDataStream(PSGenerator gen)
Generates some PostScript code right after the form definition (used primarily for
bitmap data).
|
protected abstract void |
generatePaintProc(PSGenerator gen)
Generates the PostScript code for the PaintProc of the form.
|
protected java.awt.geom.Rectangle2D |
getBBox()
Returns the form's bounding box.
|
java.awt.geom.Dimension2D |
getDimensions()
returns the form's dimensions.
|
java.lang.String |
getFormName()
Returns the form's name.
|
protected java.awt.geom.AffineTransform |
getMatrix()
Returns the matrix for use in the form.
|
java.lang.String |
getTitle()
Returns the form's title.
|
public FormGenerator(java.lang.String formName, java.lang.String title, java.awt.geom.Dimension2D dimensions)
formName
- the form's nametitle
- the form's title or nulldimensions
- the form's dimensionspublic java.lang.String getFormName()
public java.lang.String getTitle()
public java.awt.geom.Dimension2D getDimensions()
protected abstract void generatePaintProc(PSGenerator gen) throws java.io.IOException
gen
- the PostScript generatorjava.io.IOException
- if an I/O error occursprotected void generateAdditionalDataStream(PSGenerator gen) throws java.io.IOException
gen
- the PostScript generatorjava.io.IOException
- if an I/O error occursprotected java.awt.geom.AffineTransform getMatrix()
protected java.awt.geom.Rectangle2D getBBox()
public PSResource generate(PSGenerator gen) throws java.io.IOException
gen
- the PostScript generatorjava.io.IOException
- if an I/O error occursCopyright 1999-2012 The Apache Software Foundation. All Rights Reserved.