Conversion.java
1.06 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
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.native2pdf.xml;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(value=XmlAccessType.FIELD)
@XmlType(name="", propOrder={"colorspace", "resolution"})
@XmlRootElement(name="conversion")
public class Conversion
implements Serializable {
@XmlElement(required=1)
protected String colorspace;
protected int resolution;
public String getColorspace() {
return this.colorspace;
}
public void setColorspace(String value) {
this.colorspace = value;
}
public boolean isSetColorspace() {
return this.colorspace != null;
}
public int getResolution() {
return this.resolution;
}
public void setResolution(int value) {
this.resolution = value;
}
public boolean isSetResolution() {
return true;
}
}