PDFObject.java 662 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.internal.io.stream.StreamManager
 */
package com.adobe.internal.pdftoolkit.pdf.document;

import com.adobe.internal.io.stream.StreamManager;
import com.adobe.internal.pdftoolkit.pdf.document.PDFDocument;

public abstract class PDFObject {
    private final PDFDocument pdfDocument;

    protected PDFObject(PDFDocument pdfDocument) {
        this.pdfDocument = pdfDocument;
    }

    public PDFDocument getPDFDocument() {
        return this.pdfDocument;
    }

    public StreamManager getStreamManager() {
        return this.pdfDocument.getStreamManager();
    }
}