blob: 04593f2a2d0db25f384a9cd5b73e892da40c487a (
plain) (
blame)
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
|
package org.uic.barcode.staticHeader.ticketLayoutBarcode;
public class LayoutElement {
private int column;
private int line;
private int height;
private int width;
private String text;
private FormatType format = FormatType.NORMAL;
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public int getLine() {
return line;
}
public void setLine(int line) {
this.line = line;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public FormatType getFormat() {
return format;
}
public void setFormat(FormatType format) {
this.format = format;
}
}
|