Distiller.java 3.95 KB
/*
 * 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;
    }
}