FileDocCategorySizeDatePackage
ChunkHeaderV6.javaAPI DocApache Poi 3.0.11689Tue Jun 19 20:31:06 BST 2007org.apache.poi.hdgf.chunks

ChunkHeaderV6

public class ChunkHeaderV6 extends ChunkHeader
A chunk header from v6

Fields Summary
protected short
unknown2
protected short
unknown3
Constructors Summary
Methods Summary
public intgetSizeInBytes()

		return 19;
	
public shortgetUnknown2()

		return unknown2;
	
public shortgetUnknown3()

		return unknown3;
	
public booleanhasSeparator()
Does the chunk have a separator?

		// V6 never has separators
		return false;
	
public booleanhasTrailer()
Does the chunk have a trailer?

		if(unknown1 != 0 || type == 0x71 || type == 0x70) {
			return true;
		}
		if(type == 0x6b || type == 0x6a || type == 0x69 || type == 0x66
				|| type == 0x65 || type == 0x2c) {
			return true;
		}
		return false;