Html2PdfSettings.java 2.13 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.html2pdf;

import org.omg.CORBA.portable.IDLEntity;

public final class Html2PdfSettings
implements IDLEntity {
    public boolean isURL = false;
    public boolean isBookmarks = false;
    public int spideringLevel = 0;
    public boolean getEntireSite = false;
    public boolean isSamePath = false;
    public boolean isSameServer = false;
    public boolean isPlaceFooter = false;
    public boolean isPlaceHeader = false;
    public double MarginBottom = 0.0;
    public double MarginLeft = 0.0;
    public double MarginRight = 0.0;
    public double MarginTop = 0.0;
    public String Orientation = null;
    public double PageHeight = 0.0;
    public double PageWidth = 0.0;
    public boolean isTagging = false;
    public String fallbackHTMLFont = null;
    public String inputEncoding = null;
    public boolean isForceEncoding = false;

    public Html2PdfSettings() {
    }

    public Html2PdfSettings(boolean _isURL, boolean _isBookmarks, int _spideringLevel, boolean _getEntireSite, boolean _isSamePath, boolean _isSameServer, boolean _isPlaceFooter, boolean _isPlaceHeader, double _MarginBottom, double _MarginLeft, double _MarginRight, double _MarginTop, String _Orientation, double _PageHeight, double _PageWidth, boolean _isTagging, String _fallbackHTMLFont, String _inputEncoding, boolean _isForceEncoding) {
        this.isURL = _isURL;
        this.isBookmarks = _isBookmarks;
        this.spideringLevel = _spideringLevel;
        this.getEntireSite = _getEntireSite;
        this.isSamePath = _isSamePath;
        this.isSameServer = _isSameServer;
        this.isPlaceFooter = _isPlaceFooter;
        this.isPlaceHeader = _isPlaceHeader;
        this.MarginBottom = _MarginBottom;
        this.MarginLeft = _MarginLeft;
        this.MarginRight = _MarginRight;
        this.MarginTop = _MarginTop;
        this.Orientation = _Orientation;
        this.PageHeight = _PageHeight;
        this.PageWidth = _PageWidth;
        this.isTagging = _isTagging;
        this.fallbackHTMLFont = _fallbackHTMLFont;
        this.inputEncoding = _inputEncoding;
        this.isForceEncoding = _isForceEncoding;
    }
}