1 11 package org.eclipse.swt.internal.image; 12 13 14 final class JPEGStartOfImage extends JPEGFixedSizeSegment { 15 16 public JPEGStartOfImage() { 17 super(); 18 } 19 20 public JPEGStartOfImage(byte[] reference) { 21 super(reference); 22 } 23 24 public JPEGStartOfImage(LEDataInputStream byteStream) { 25 super(byteStream); 26 } 27 28 public int signature() { 29 return JPEGFileFormat.SOI; 30 } 31 32 public int fixedSize() { 33 return 2; 34 } 35 } 36 | Popular Tags |