From 1e0b6afd1b0452a507abc922a23fc06660ed33e0 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Tue, 12 Nov 2013 09:53:57 +0000 Subject: [PATCH] Consistent indenting, based on current POI style guide git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1540987 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/openxml4j/opc/ZipPackage.java | 205 +++++++++--------- 1 file changed, 101 insertions(+), 104 deletions(-) diff --git a/src/ooxml/java/org/apache/poi/openxml4j/opc/ZipPackage.java b/src/ooxml/java/org/apache/poi/openxml4j/opc/ZipPackage.java index 8bfec47312..fc3ababa53 100644 --- a/src/ooxml/java/org/apache/poi/openxml4j/opc/ZipPackage.java +++ b/src/ooxml/java/org/apache/poi/openxml4j/opc/ZipPackage.java @@ -47,112 +47,109 @@ import org.apache.poi.util.POILogger; /** * Physical zip package. - * - * @author Julien Chable */ public final class ZipPackage extends Package { - - private static POILogger logger = POILogFactory.getLogger(ZipPackage.class); - - /** - * Zip archive, as either a file on disk, - * or a stream - */ - private final ZipEntrySource zipArchive; - - /** - * Constructor. Creates a new ZipPackage. - */ - public ZipPackage() { - super(defaultPackageAccess); - this.zipArchive = null; - } - - /** - * Constructor. Opens a Zip based Open XML document from - * an InputStream. - * - * @param in - * Zip input stream to load. - * @param access - * The package access mode. - * @throws IllegalArgumentException - * If the specified input stream not an instance of - * ZipInputStream. - */ - ZipPackage(InputStream in, PackageAccess access) throws IOException { - super(access); - this.zipArchive = new ZipInputStreamZipEntrySource( - new ZipInputStream(in) - ); - } - - /** - * Constructor. Opens a Zip based Open XML document from a File. - * - * @param path - * The path of the file to open or create. - * @param access - * The package access mode. - * @throws InvalidFormatException - * If the content type part parsing encounters an error. - */ - ZipPackage(String path, PackageAccess access) { - super(access); - - ZipFile zipFile = null; - - try { - zipFile = ZipHelper.openZipFile(path); - } catch (IOException e) { - throw new InvalidOperationException( - "Can't open the specified file: '" + path + "'", e); - } - - this.zipArchive = new ZipFileZipEntrySource(zipFile); - } - - /** - * Constructor. Opens a Zip based Open XML document. - * - * @param file - * The file to open or create. - * @param access - * The package access mode. - * @throws InvalidFormatException - * If the content type part parsing encounters an error. - */ - ZipPackage(File file, PackageAccess access) { - super(access); - - ZipFile zipFile = null; - - try { - zipFile = ZipHelper.openZipFile(file); - } catch (IOException e) { - throw new InvalidOperationException( - "Can't open the specified file: '" + file + "'", e); - } - - this.zipArchive = new ZipFileZipEntrySource(zipFile); - } - - /** - * Constructor. Opens a Zip based Open XML document from - * a custom ZipEntrySource, typically an open archive - * from another system - * - * @param zipEntry - * Zip data to load. - * @param access - * The package access mode. - * @throws InvalidFormatException - * If the content type part parsing encounters an error. - */ - ZipPackage(ZipEntrySource zipEntry, PackageAccess access) { - super(access); - this.zipArchive = zipEntry; - } + private static POILogger logger = POILogFactory.getLogger(ZipPackage.class); + + /** + * Zip archive, as either a file on disk, + * or a stream + */ + private final ZipEntrySource zipArchive; + + /** + * Constructor. Creates a new ZipPackage. + */ + public ZipPackage() { + super(defaultPackageAccess); + this.zipArchive = null; + } + + /** + * Constructor. Opens a Zip based Open XML document from + * an InputStream. + * + * @param in + * Zip input stream to load. + * @param access + * The package access mode. + * @throws IllegalArgumentException + * If the specified input stream not an instance of + * ZipInputStream. + */ + ZipPackage(InputStream in, PackageAccess access) throws IOException { + super(access); + this.zipArchive = new ZipInputStreamZipEntrySource( + new ZipInputStream(in) + ); + } + + /** + * Constructor. Opens a Zip based Open XML document from a File. + * + * @param path + * The path of the file to open or create. + * @param access + * The package access mode. + * @throws InvalidFormatException + * If the content type part parsing encounters an error. + */ + ZipPackage(String path, PackageAccess access) { + super(access); + + ZipFile zipFile = null; + + try { + zipFile = ZipHelper.openZipFile(path); + } catch (IOException e) { + throw new InvalidOperationException( + "Can't open the specified file: '" + path + "'", e); + } + + this.zipArchive = new ZipFileZipEntrySource(zipFile); + } + + /** + * Constructor. Opens a Zip based Open XML document. + * + * @param file + * The file to open or create. + * @param access + * The package access mode. + * @throws InvalidFormatException + * If the content type part parsing encounters an error. + */ + ZipPackage(File file, PackageAccess access) { + super(access); + + ZipFile zipFile = null; + + try { + zipFile = ZipHelper.openZipFile(file); + } catch (IOException e) { + throw new InvalidOperationException( + "Can't open the specified file: '" + file + "'", e); + } + + this.zipArchive = new ZipFileZipEntrySource(zipFile); + } + + /** + * Constructor. Opens a Zip based Open XML document from + * a custom ZipEntrySource, typically an open archive + * from another system + * + * @param zipEntry + * Zip data to load. + * @param access + * The package access mode. + * @throws InvalidFormatException + * If the content type part parsing encounters an error. + */ + ZipPackage(ZipEntrySource zipEntry, PackageAccess access) { + super(access); + this.zipArchive = zipEntry; + } /** * Retrieves the parts from this package. We assume that the package has not -- 2.39.5