Package net.sf.jasperreports.export
Interface PrintServiceExporterConfiguration
- All Superinterfaces:
CommonExportConfiguration,ExporterConfiguration,Graphics2DExporterConfiguration
- All Known Implementing Classes:
SimplePrintServiceExporterConfiguration
Interface containing settings used by the print service exporter.
- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
-
Field Summary
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS -
Method Summary
Modifier and TypeMethodDescriptionReturns an instance of javax.print.attribute.PrintRequestAttributeSet.Returns an instance of javax.print.PrintService, useful if users do not want JPS to lookup for an available print service.Returns an instance of javax.print.attribute.PrintServiceAttributeSet.Returns a boolean value specifying whether a page setup dialog should be opened before printing.Returns a boolean value specifying whether a page setup dialog should be opened only once before printing in a batch export job.Returns a boolean value specifying whether a print setup dialog should be opened before printing.Returns a boolean value specifying whether a print setup dialog should be opened only once in a batch export job.Methods inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
isOverrideHints
-
Method Details
-
getPrintRequestAttributeSet
PrintRequestAttributeSet getPrintRequestAttributeSet()Returns an instance of javax.print.attribute.PrintRequestAttributeSet. -
getPrintServiceAttributeSet
PrintServiceAttributeSet getPrintServiceAttributeSet()Returns an instance of javax.print.attribute.PrintServiceAttributeSet. -
isDisplayPageDialog
Boolean isDisplayPageDialog()Returns a boolean value specifying whether a page setup dialog should be opened before printing. -
isDisplayPageDialogOnlyOnce
Boolean isDisplayPageDialogOnlyOnce()Returns a boolean value specifying whether a page setup dialog should be opened only once before printing in a batch export job. -
isDisplayPrintDialog
Boolean isDisplayPrintDialog()Returns a boolean value specifying whether a print setup dialog should be opened before printing. -
isDisplayPrintDialogOnlyOnce
Boolean isDisplayPrintDialogOnlyOnce()Returns a boolean value specifying whether a print setup dialog should be opened only once in a batch export job. -
getPrintService
PrintService getPrintService()Returns an instance of javax.print.PrintService, useful if users do not want JPS to lookup for an available print service.
-