RenderResultBuffer.java 1.4 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.adobe.service.InlinedDataBuffer
 */
package com.adobe.document.xmlform;

import com.adobe.document.xmlform.PrintBatchOutput;
import com.adobe.document.xmlform.PrintOutput;
import com.adobe.document.xmlform.RenderBatchOutputType;
import com.adobe.document.xmlform.SinglePieceOutput;
import com.adobe.service.InlinedDataBuffer;
import org.omg.CORBA.portable.IDLEntity;

public final class RenderResultBuffer
implements IDLEntity {
    private static final long serialVersionUID = 1;
    public boolean isArchiveFile;
    public RenderBatchOutputType outputType;
    public InlinedDataBuffer archiveBuffer;
    public PrintOutput printOutputBuffer;
    public PrintBatchOutput printBatchOutputBuffer;
    public SinglePieceOutput singlePieceOutputBuffer;

    public RenderResultBuffer() {
    }

    public RenderResultBuffer(boolean isArchiveFile, RenderBatchOutputType outputType, InlinedDataBuffer archiveBuffer, PrintOutput printOutputBuffer, PrintBatchOutput printBatchOutputBuffer, SinglePieceOutput singlePieceOutputBuffer) {
        this.isArchiveFile = isArchiveFile;
        this.outputType = outputType;
        this.archiveBuffer = archiveBuffer;
        this.printOutputBuffer = printOutputBuffer;
        this.printBatchOutputBuffer = printBatchOutputBuffer;
        this.singlePieceOutputBuffer = singlePieceOutputBuffer;
    }
}