Example usage for com.lowagie.text.pdf PdfWriter subclass-usage

List of usage examples for com.lowagie.text.pdf PdfWriter subclass-usage

Introduction

In this page you can find the example usage for com.lowagie.text.pdf PdfWriter subclass-usage.

Usage

From source file buckley.compile.StubPdfWriter.java

public class StubPdfWriter extends PdfWriter {
    private List<PdfAnnotation> annotations = new ArrayList<PdfAnnotation>();
    private PdfWriter delegate = Mockito.mock(PdfWriter.class);

    @Override
    public void addAnnotation(PdfAnnotation pdfAnnotation) {

From source file fr.opensagres.xdocreport.itext.extension.ExtendedPdfWriter.java

public class ExtendedPdfWriter extends PdfWriter {
    protected ExtendedPdfWriter(PdfDocument document, OutputStream os) {
        super(document, os);
        pdf = document;
        directContent = new ExtendedPdfContentByte(this);
        directContentUnder = new ExtendedPdfContentByte(this);

From source file ispyb.common.util.PDFFormFiller.java

public class PDFFormFiller extends PdfWriter {
    /*************
     * Constants *
     *************/

    private static final Logger LOG = Logger.getLogger(PDFFormFiller.class);