Package com.teamdev.jxbrowser.print
Interface Printer<PrintSettingsT extends PrintSettings>
- All Known Subinterfaces:
PdfPrinter<PrintSettingT>
,SystemPrinter<PrintSettingT>
public interface Printer<PrintSettingsT extends PrintSettings>
An interface for concrete printers to implement.
- Since:
- 7.13
-
Method Summary
Modifier and TypeMethodDescriptionReturns the capabilities of this printer.Returns the device name of this printer as shown in Print Preview.Returns the name of this printer as understood by OS.printJob()
Returns the current print job.
-
Method Details
-
deviceName
String deviceName()Returns the device name of this printer as shown in Print Preview. -
printerName
String printerName()Returns the name of this printer as understood by OS.- Since:
- 7.20
-
capabilities
Capabilities capabilities()Returns the capabilities of this printer. -
printJob
PrintJob<PrintSettingsT> printJob()Returns the current print job.
-