PrintedOutputOptions.java
1.7 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.fd.output.api;
import com.adobe.aemfd.docmanager.Document;
import com.adobe.fd.output.api.PaginationOverride;
import com.adobe.fd.output.api.PrintConfig;
public class PrintedOutputOptions {
private String contentRoot;
private String locale;
private PrintConfig printConfig;
private String debugDir;
private Document xci;
private int copies = 1;
private PaginationOverride paginationOverride;
public PaginationOverride getPaginationOverride() {
return this.paginationOverride;
}
public void setPaginationOverride(PaginationOverride paginationOverride) {
this.paginationOverride = paginationOverride;
}
public String getContentRoot() {
return this.contentRoot;
}
public void setContentRoot(String url) {
this.contentRoot = url;
}
public String getLocale() {
return this.locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public int getCopies() {
return this.copies;
}
public void setCopies(int copies) {
this.copies = copies;
}
public PrintConfig getPrintConfig() {
return this.printConfig;
}
public void setPrintConfig(PrintConfig printConfig) {
this.printConfig = printConfig;
}
public Document getXci() {
return this.xci;
}
public void setXci(Document xci) {
this.xci = xci;
}
public String getDebugDir() {
return this.debugDir;
}
public void setDebugDir(String debugDir) {
this.debugDir = debugDir;
}
}