FileDocCategorySizeDatePackage
ChunkHeaderV11.javaAPI DocApache Poi 3.0.11644Tue Jun 26 23:18:44 BST 2007org.apache.poi.hdgf.chunks

ChunkHeaderV11

public class ChunkHeaderV11 extends ChunkHeaderV6
A chunk header from v11+

Fields Summary
Constructors Summary
Methods Summary
public booleanhasSeparator()
Does the chunk have a separator?

		// For some reason, there are two types that don't have a 
		//  separator despite the flags that indicate they do
		if(type == 0x1f || type == 0xc9) { return false; }
		
		// If there's a trailer, there's a separator
		if(hasTrailer()) { return true; }

		if(unknown2 == 2 && unknown3 == 0x55) { return true; }
		if(unknown2 == 2 && unknown3 == 0x54 && type == 0xaa) { return true; }
		if(unknown2 == 3 && unknown3 != 0x50) { return true; }
		if(type == 0x69) { return true; }
		
		return false;