Package net.sf.paperclips
Class DebugPrint
- java.lang.Object
-
- net.sf.paperclips.DebugPrint
-
- All Implemented Interfaces:
Print
public class DebugPrint extends java.lang.Object implements Print
Deprecated.Reminder to remove references to DebugPrint when you're done debugging a print job.Helper Print for debugging documents which fail to layout. Clients may set breakpoints inside the methods in this class (as well as DebugIterator and DebugPiece), then step into the target object's methods to trace the problem.
-
-
Constructor Summary
Constructors Constructor Description DebugPrint(Print target)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description PrintIterator
iterator(org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)
Deprecated.Returns a PrintIterator for laying out the contents of this Print.
-
-
-
Constructor Detail
-
DebugPrint
public DebugPrint(Print target)
Deprecated.- Parameters:
target
- the Print object to debug
-
-
Method Detail
-
iterator
public PrintIterator iterator(org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)
Deprecated.Description copied from interface:Print
Returns a PrintIterator for laying out the contents of this Print. The iterator uses a snapshot of the print at the time this method is invoked, so subsequent changes to the Print will not affect the output of the iterator.
-
-