RenderResultBuffer.java
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* 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;
}
}