BarcodeGenerationParams.java
2.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xfa.pmp.common;
public class BarcodeGenerationParams {
private String symbology;
private int version;
private double width;
private double height;
private int resolution;
private String caption;
private int growthFlags;
private int cellSize;
private int errorCorrection;
private int xSymbolWidth;
private int xSymbolHeight;
private int numCodeWordCol;
private int numCodeWordRow;
private int eccLevel;
public String getSymbology() {
return this.symbology;
}
public void setSymbology(String symbology) {
this.symbology = symbology;
}
public int getVersion() {
return this.version;
}
public void setVersion(int version) {
this.version = version;
}
public double getWidth() {
return this.width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return this.height;
}
public void setHeight(double height) {
this.height = height;
}
public int getResolution() {
return this.resolution;
}
public void setResolution(int resolution) {
this.resolution = resolution;
}
public String getCaption() {
return this.caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
public int getGrowthFlags() {
return this.growthFlags;
}
public void setGrowthFlags(int growthFlags) {
this.growthFlags = growthFlags;
}
public int getCellSize() {
return this.cellSize;
}
public void setCellSize(int cellSize) {
this.cellSize = cellSize;
}
public int getErrorCorrection() {
return this.errorCorrection;
}
public void setErrorCorrection(int errorCorrection) {
this.errorCorrection = errorCorrection;
}
public int getXSymbolWidth() {
return this.xSymbolWidth;
}
public void setXSymbolWidth(int symbolWidth) {
this.xSymbolWidth = symbolWidth;
}
public int getXSymbolHeight() {
return this.xSymbolHeight;
}
public void setXSymbolHeight(int symbolHeight) {
this.xSymbolHeight = symbolHeight;
}
public int getNumCodeWordCol() {
return this.numCodeWordCol;
}
public void setNumCodeWordCol(int numCodeWordCol) {
this.numCodeWordCol = numCodeWordCol;
}
public int getNumCodeWordRow() {
return this.numCodeWordRow;
}
public void setNumCodeWordRow(int numCodeWordRow) {
this.numCodeWordRow = numCodeWordRow;
}
public int getEccLevel() {
return this.eccLevel;
}
public void setEccLevel(int eccLevel) {
this.eccLevel = eccLevel;
}
}