ach.image
Interface BatchPrinter
- All Known Implementing Classes:
- ImagePanel
- public interface BatchPrinter
BatchPrinter.java Copyright (c) 2000-2005 Helge Hackbarth
An interface to implement a method for batch printing
Method Summary |
void |
batchPrint(java.lang.Object printJob,
int preferredResolution,
java.lang.String printPageSelection)
This callback interface can be used to implement a method that
allows to initiate printing a sequence of slides described by
a "page range" string (page numbers seperated by semicolons and
low - high ranges like 1;2;8-10).
|
batchPrint
public void batchPrint(java.lang.Object printJob,
int preferredResolution,
java.lang.String printPageSelection)
- This callback interface can be used to implement a method that
allows to initiate printing a sequence of slides described by
a "page range" string (page numbers seperated by semicolons and
low - high ranges like 1;2;8-10).
The method expects that a printjob is already instantiated.
For an implementation example see class ImagePanel.
- Parameters:
printJob
- instance of PrintJob or PrinterJob (supported by JDK 1.2 and higher)preferredResolution
- Resolution that should be used for printingprintPageSelection
- page numbers seperated by semicolons and low - high ranges like 1;2;8-10- See Also:
ImagePanel