PDFPageAndAnnotation.java 1.46 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.internal.pdftoolkit.core.cos.CosObject
 *  com.adobe.internal.pdftoolkit.pdf.interactive.annotation.PDFAnnotation
 *  com.adobe.internal.pdftoolkit.pdf.page.PDFPage
 */
package com.adobe.fd.output.internal;

import com.adobe.internal.pdftoolkit.core.cos.CosObject;
import com.adobe.internal.pdftoolkit.pdf.interactive.annotation.PDFAnnotation;
import com.adobe.internal.pdftoolkit.pdf.page.PDFPage;

public class PDFPageAndAnnotation {
    private PDFPage page = null;
    private PDFAnnotation pdfAnnotation = null;
    private CosObject appearanceCosObject = null;

    public PDFPageAndAnnotation() {
    }

    public PDFPageAndAnnotation(PDFPage page, PDFAnnotation pdfAnnotation, CosObject cosObject) {
        this.page = page;
        this.pdfAnnotation = pdfAnnotation;
        this.appearanceCosObject = cosObject;
    }

    public PDFPage getPage() {
        return this.page;
    }

    public void setPage(PDFPage page) {
        this.page = page;
    }

    public PDFAnnotation getPdfAnnotation() {
        return this.pdfAnnotation;
    }

    public void setPdfAnnotation(PDFAnnotation pdfAnnotation) {
        this.pdfAnnotation = pdfAnnotation;
    }

    public CosObject getAppearanceCosObject() {
        return this.appearanceCosObject;
    }

    public void setAppearanceCosObject(CosObject appearanceCosObject) {
        this.appearanceCosObject = appearanceCosObject;
    }
}