public ZipDirectory(ZipStorage storage, Directory parent, ZipArchiveEntry directory) { this.storage = storage; this.parent = parent; this.directory = directory; }
public ZipRoot(ZipStorage storage) { this.storage = storage; }
public ZipStream(ZipStorage storage, Stream stream) { this.storage = storage; this.stream = stream; }
public ZipFile(ZipStorage storage, Directory parent, ZipArchiveEntry file) { this.storage = storage; this.parent = parent; this.file = file; }