FileSettings.java
2.34 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.native2pdf.xml;
import com.adobe.native2pdf.xml.FileCompression;
import com.adobe.native2pdf.xml.JpgFormat;
import com.adobe.native2pdf.xml.PngFilter;
import com.adobe.native2pdf.xml.PngInterlace;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="", propOrder={"monochrome", "grayscale", "color", "format", "filter", "interlace"})
@XmlRootElement(name="fileSettings")
public class FileSettings
implements Serializable {
protected FileCompression monochrome;
protected FileCompression grayscale;
protected FileCompression color;
protected JpgFormat format;
protected PngFilter filter;
protected PngInterlace interlace;
public FileCompression getMonochrome() {
return this.monochrome;
}
public void setMonochrome(FileCompression value) {
this.monochrome = value;
}
public boolean isSetMonochrome() {
return this.monochrome != null;
}
public FileCompression getGrayscale() {
return this.grayscale;
}
public void setGrayscale(FileCompression value) {
this.grayscale = value;
}
public boolean isSetGrayscale() {
return this.grayscale != null;
}
public FileCompression getColor() {
return this.color;
}
public void setColor(FileCompression value) {
this.color = value;
}
public boolean isSetColor() {
return this.color != null;
}
public JpgFormat getFormat() {
return this.format;
}
public void setFormat(JpgFormat value) {
this.format = value;
}
public boolean isSetFormat() {
return this.format != null;
}
public PngFilter getFilter() {
return this.filter;
}
public void setFilter(PngFilter value) {
this.filter = value;
}
public boolean isSetFilter() {
return this.filter != null;
}
public PngInterlace getInterlace() {
return this.interlace;
}
public void setInterlace(PngInterlace value) {
this.interlace = value;
}
public boolean isSetInterlace() {
return this.interlace != null;
}
}