Html2PdfSettings.java
2.13 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
/*
* 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;
}
}