summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/dynamicFrame/api/IData.java
blob: 51f9c7bd7b8851367d938a455d5fd457ba6e86a6 (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
package org.uic.barcode.dynamicFrame.api;

/**
 * The Class DataType.
 */
public interface IData {




	/**
	 * Gets the data format.
	 *
	 * @return the data format
	 */
	public String getFormat();

	/**
	 * Sets the data format.
	 *
	 * @param dataFormat the new data format
	 */
	public void setFormat(String format);
	/**
	 * Gets the data.
	 *
	 * @return the data
	 */
	public byte[] getData();

	/**
	 * Sets the data.
	 *
	 * @param data the new data
	 */
	public void setData(byte[] data);


}