Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7aa67b6cdfec3e0e67e859cec553cbfc3a781b34 (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
package org.eclipse.swt.internal.image;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */

final class JPEGEndOfImage extends JPEGFixedSizeSegment {

	public JPEGEndOfImage() {
		super();
	}
	
	public JPEGEndOfImage(byte[] reference) {
		super(reference);
	}
	
	public int signature() {
		return JPEGFileFormat.EOI;
	}
	
	public int fixedSize() {
		return 2;
	}
}

Back to the top