1 17 18 package net.sourceforge.groboutils.codecoverage.v2.ant.zip; 19 20 import java.util.zip.ZipException ; 21 22 34 public interface ZipExtraField { 35 36 41 ZipShort getHeaderId(); 42 43 49 ZipShort getLocalFileDataLength(); 50 51 57 ZipShort getCentralDirectoryLength(); 58 59 65 byte[] getLocalFileDataData(); 66 67 73 byte[] getCentralDirectoryData(); 74 75 80 void parseFromLocalFileData(byte[] data, int offset, int length) 81 throws ZipException ; 82 } 83 | Popular Tags |