org.at4j.zip
Class ZipFileContents

java.lang.Object
  extended by org.at4j.zip.ZipFileContents

public class ZipFileContents
extends Object

This object contains the root entry of a Zip file and a map with the Zip file contents. It is returned by ZipFileParser.parse(ZipEntryCollaborator, org.entityfs.RandomAccess, java.nio.charset.Charset, java.nio.charset.Charset) .

This is part of the ZipFile implementations. Clients should not have to bother with this object.

Since:
1.0
Author:
Karl Gustafsson

Constructor Summary
ZipFileContents(ZipDirectoryEntry rootEntry, Map<AbsoluteLocation,ZipEntry> entryMap, String comment)
           
 
Method Summary
 String getComment()
           
 Map<AbsoluteLocation,ZipEntry> getEntryMap()
           
 ZipDirectoryEntry getRootEntry()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ZipFileContents

public ZipFileContents(ZipDirectoryEntry rootEntry,
                       Map<AbsoluteLocation,ZipEntry> entryMap,
                       String comment)
Method Detail

getRootEntry

public ZipDirectoryEntry getRootEntry()

getEntryMap

public Map<AbsoluteLocation,ZipEntry> getEntryMap()

getComment

public String getComment()