summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ssbFrame/SsbTicketPart.java
blob: 5583e66c0fc13323b822709b0808f5db2919b1d9 (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
package org.uic.barcode.ssbFrame;

import org.uic.barcode.ticket.EncodingFormatException;

public abstract class SsbTicketPart {
	
	public static int openDataLength = 437;
	
	public void decode(byte[] bytes) throws EncodingFormatException {
		if (bytes.length != 114) {
			throw new EncodingFormatException("Data size does not fit to SSB");
		}
		decodeContent(bytes, 0);
	};
	
	protected abstract int decodeContent(byte[] bytes , int offset);

	public void encode(byte[] bytes) throws EncodingFormatException {
		if (bytes.length != 114) {
			throw new EncodingFormatException("Data size does not fit to SSB");
		}
		encodeContent(bytes, 0);
	}

	protected abstract int encodeContent(byte[] bytes, int offset);
	
	
	
	

}