Conversion.java 1.06 KB
/*
 * 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;
    }
}