Distiller.java
3.95 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.native2pdf.xml;
import com.adobe.native2pdf.xml.PrintPageRange;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="", propOrder={"printType", "printColor", "printPageRange", "printOutputType", "printHandoutOrder", "printContent", "printPageType"})
@XmlRootElement(name="Distiller")
public class Distiller
implements Serializable {
protected String printType;
protected String printColor;
protected PrintPageRange printPageRange;
protected String printOutputType;
protected String printHandoutOrder;
protected String printContent;
protected String printPageType;
@XmlAttribute
protected Boolean frameSlides;
@XmlAttribute
protected Boolean printComments;
@XmlAttribute
protected Boolean fitToPage;
public String getPrintType() {
return this.printType;
}
public void setPrintType(String value) {
this.printType = value;
}
public boolean isSetPrintType() {
return this.printType != null;
}
public String getPrintColor() {
return this.printColor;
}
public void setPrintColor(String value) {
this.printColor = value;
}
public boolean isSetPrintColor() {
return this.printColor != null;
}
public PrintPageRange getPrintPageRange() {
return this.printPageRange;
}
public void setPrintPageRange(PrintPageRange value) {
this.printPageRange = value;
}
public boolean isSetPrintPageRange() {
return this.printPageRange != null;
}
public String getPrintOutputType() {
return this.printOutputType;
}
public void setPrintOutputType(String value) {
this.printOutputType = value;
}
public boolean isSetPrintOutputType() {
return this.printOutputType != null;
}
public String getPrintHandoutOrder() {
return this.printHandoutOrder;
}
public void setPrintHandoutOrder(String value) {
this.printHandoutOrder = value;
}
public boolean isSetPrintHandoutOrder() {
return this.printHandoutOrder != null;
}
public String getPrintContent() {
return this.printContent;
}
public void setPrintContent(String value) {
this.printContent = value;
}
public boolean isSetPrintContent() {
return this.printContent != null;
}
public String getPrintPageType() {
return this.printPageType;
}
public void setPrintPageType(String value) {
this.printPageType = value;
}
public boolean isSetPrintPageType() {
return this.printPageType != null;
}
public boolean isFrameSlides() {
return this.isSetFrameSlides() ? this.frameSlides : false;
}
public void setFrameSlides(boolean value) {
this.frameSlides = value;
}
public boolean isSetFrameSlides() {
return this.frameSlides != null;
}
public void unsetFrameSlides() {
this.frameSlides = null;
}
public boolean isPrintComments() {
return this.isSetPrintComments() ? this.printComments : false;
}
public void setPrintComments(boolean value) {
this.printComments = value;
}
public boolean isSetPrintComments() {
return this.printComments != null;
}
public void unsetPrintComments() {
this.printComments = null;
}
public boolean isFitToPage() {
return this.isSetFitToPage() ? this.fitToPage : false;
}
public void setFitToPage(boolean value) {
this.fitToPage = value;
}
public boolean isSetFitToPage() {
return this.fitToPage != null;
}
public void unsetFitToPage() {
this.fitToPage = null;
}
}