Package net.sf.jasperreports.export
Interface PrintServiceExporterConfiguration
-
- All Superinterfaces:
CommonExportConfiguration,ExporterConfiguration,Graphics2DExporterConfiguration
- All Known Implementing Classes:
SimplePrintServiceExporterConfiguration
public interface PrintServiceExporterConfiguration extends Graphics2DExporterConfiguration
Interface containing settings used by the print service exporter.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
- See Also:
JRPrintServiceExporter
-
-
Field Summary
-
Fields inherited from interface net.sf.jasperreports.export.CommonExportConfiguration
PROPERTY_EXPORT_CONFIGURATION_OVERRIDE_REPORT_HINTS
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.print.attribute.PrintRequestAttributeSetgetPrintRequestAttributeSet()Returns an instance of javax.print.attribute.PrintRequestAttributeSet.javax.print.PrintServicegetPrintService()Returns an instance of javax.print.PrintService, useful if users do not want JPS to lookup for an available print service.javax.print.attribute.PrintServiceAttributeSetgetPrintServiceAttributeSet()Returns an instance of javax.print.attribute.PrintServiceAttributeSet.java.lang.BooleanisDisplayPageDialog()Returns a boolean value specifying whether a page setup dialog should be opened before printing.java.lang.BooleanisDisplayPageDialogOnlyOnce()Returns a boolean value specifying whether a page setup dialog should be opened only once before printing in a batch export job.java.lang.BooleanisDisplayPrintDialog()Returns a boolean value specifying whether a print setup dialog should be opened before printing.java.lang.BooleanisDisplayPrintDialogOnlyOnce()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 Detail
-
getPrintRequestAttributeSet
javax.print.attribute.PrintRequestAttributeSet getPrintRequestAttributeSet()
Returns an instance of javax.print.attribute.PrintRequestAttributeSet.
-
getPrintServiceAttributeSet
javax.print.attribute.PrintServiceAttributeSet getPrintServiceAttributeSet()
Returns an instance of javax.print.attribute.PrintServiceAttributeSet.
-
isDisplayPageDialog
java.lang.Boolean isDisplayPageDialog()
Returns a boolean value specifying whether a page setup dialog should be opened before printing.
-
isDisplayPageDialogOnlyOnce
java.lang.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
java.lang.Boolean isDisplayPrintDialog()
Returns a boolean value specifying whether a print setup dialog should be opened before printing.
-
isDisplayPrintDialogOnlyOnce
java.lang.Boolean isDisplayPrintDialogOnlyOnce()
Returns a boolean value specifying whether a print setup dialog should be opened only once in a batch export job.
-
getPrintService
javax.print.PrintService getPrintService()
Returns an instance of javax.print.PrintService, useful if users do not want JPS to lookup for an available print service.
-
-