diff options
author | Jeremias Maerki <jeremias@apache.org> | 2008-05-01 17:16:57 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2008-05-01 17:16:57 +0000 |
commit | 3d594ae70ccb3f629f61ba2d55915213cc1b34e7 (patch) | |
tree | 99440c318f894d565c11192b7750d6ea7f724e9b /src | |
parent | a58560c014fcf997c196aabce95491b1622919ca (diff) | |
download | xmlgraphics-fop-3d594ae70ccb3f629f61ba2d55915213cc1b34e7.tar.gz xmlgraphics-fop-3d594ae70ccb3f629f61ba2d55915213cc1b34e7.zip |
DSC = Document Structuring Conventions!
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@652582 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/java/org/apache/fop/render/ps/PSRenderer.java | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/java/org/apache/fop/render/ps/PSRenderer.java b/src/java/org/apache/fop/render/ps/PSRenderer.java index e4d582ba2..a94c8b0aa 100644 --- a/src/java/org/apache/fop/render/ps/PSRenderer.java +++ b/src/java/org/apache/fop/render/ps/PSRenderer.java @@ -170,7 +170,10 @@ public class PSRenderer extends AbstractPathOrientedRenderer /** Whether or not the safe set page device macro will be used or not */ private boolean safeSetPageDevice = false; - /** Whether or not Dublin Core Standard (dsc) compliant output is enforced */ + /** + * Whether or not PostScript Document Structuring Conventions (DSC) compliant output are + * enforced. + */ private boolean dscCompliant = true; /** Is used to determine the document's bounding box */ @@ -181,9 +184,8 @@ public class PSRenderer extends AbstractPathOrientedRenderer /** This is a collection holding all document footer comments */ private Collection footerComments; - /** - * {@inheritDoc} - */ + + /** {@inheritDoc} */ public void setUserAgent(FOUserAgent agent) { super.setUserAgent(agent); Object obj; @@ -1703,13 +1705,14 @@ public class PSRenderer extends AbstractPathOrientedRenderer } /** - * Sets whether or not Dublin Core Standard (dsc) compliance is enforced. - * - * It can cause problems (unwanted postscript subsystem initgraphics/erasepage calls) + * Sets whether or not PostScript Document Structuring Conventions (dsc) compliance are + * enforced. + * <p> + * It can cause problems (unwanted PostScript subsystem initgraphics/erasepage calls) * on some printers when the pagedevice is set. If this causes problems on a * particular implementation then use this setting with a 'false' value to try and * minimize the number of setpagedevice calls in the postscript document output. - * + * <p> * Set this value to false if you experience unwanted blank pages in your * postscript output. * @param dscCompliant boolean value (default is true) |