RenderResultForPrint.java
1.24 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
39
40
/*
* 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.RenderResultBuffer;
import com.adobe.document.xmlform.ReturnStatus;
import com.adobe.service.InlinedDataBuffer;
import org.omg.CORBA.portable.IDLEntity;
public final class RenderResultForPrint
implements IDLEntity {
private static final long serialVersionUID = 1;
public String batchId = "";
public String documentType = "";
public ReturnStatus status;
public int pageCount;
public int pieceCount;
public RenderResultBuffer output;
public InlinedDataBuffer outputTrace;
public String extraInfo = "";
public RenderResultForPrint() {
}
public RenderResultForPrint(String batchId, String documentType, ReturnStatus status, int pageCount, int pieceCount, RenderResultBuffer output, InlinedDataBuffer outputTrace, String extraInfo) {
this.batchId = batchId;
this.documentType = documentType;
this.status = status;
this.pageCount = pageCount;
this.pieceCount = pieceCount;
this.output = output;
this.outputTrace = outputTrace;
this.extraInfo = extraInfo;
}
}