All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.ext.services.PdfService Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.ext.services;

import java.awt.print.Pageable;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.io.IOException;
import java.io.OutputStream;

import javax.print.attribute.PrintRequestAttributeSet;

public interface PdfService {

    void printToPDF(OutputStream out, Pageable pageable, Printable printable, PrintRequestAttributeSet attribs) throws PrinterException, IOException;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy