1 6 21 22 package de.schlichtherle.io.archive.zip; 23 24 import de.schlichtherle.io.rof.*; 25 26 import java.io.*; 27 import java.util.zip.*; 28 29 61 public class CheckedJarDriver extends JarDriver { 62 63 protected Zip32InputArchive createZip32InputArchive( 64 ReadOnlyFile rof, 65 String encoding, 66 boolean preambled, 67 boolean postambled) 68 throws NullPointerException , 69 UnsupportedEncodingException, 70 FileNotFoundException, 71 ZipException, 72 IOException { 73 return new CheckedZip32InputArchive(rof, encoding, preambled, postambled); 74 } 75 } 76 | Popular Tags |