blob: d6e1410bdd7f9a0bd07840c1e4892d3517794f25 (
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
51
52
|
package org.uic.barcode.dynamicFrame.api;
/**
* The Class DataType.
*/
public class SimpleData implements IData{
/** The data format.
*
* -- FCB1 FCB version 1
* -- FCB2 FCB version 2
* -- RICS company code + ...
**/
public String format;
/** The data. */
public byte[] data;
/**
* Gets the data format.
*
* @return the data format
*/
public String getFormat() {
return format;
}
/**
* Sets the data format.
*
* @param dataFormat the new data format
*/
public void setFormat(String format) {
this.format = format;
}
/**
* Gets the data.
*
* @return the data
*/
public byte[] getData() {
return data;
}
@Override
public void setData(byte[] data) {
this.data = data;
}
}
|