From: <doc...@us...> - 2007-07-30 22:15:01
|
Revision: 132 http://openpcl.svn.sourceforge.net/openpcl/?rev=132&view=rev Author: documentsystems Date: 2007-07-30 15:15:01 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Howard Hoagland. In IPluginHooksOpenPCL, added method forceFrontSideWhenDuplexing() to returns true if tree node page must print on the front side (not on the back of a page) when duplexing. Modified Paths: -------------- openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java Modified: openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java =================================================================== --- openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java 2007-07-27 00:31:03 UTC (rev 131) +++ openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java 2007-07-30 22:15:01 UTC (rev 132) @@ -79,6 +79,9 @@ /** Get the Form Name for a tree node page. Used for both print "PCL Direct" and for "Windows Print". */ public String getFormNameForTreeNode(PosTreeNode pPosTreeNode); + /** Returns true if this tree node page must print on the front side (not on the back of a page) when duplexing. */ + public boolean forceFrontSideWhenDuplexing(PosTreeNode pPosTreeNode); + /** Render the BufferedImage from the tree node */ public BufferedImage renderImageForPrintingFromTreeNode(PosTreeNode pPosTreeNode); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |