Package totalcross.util.zip
Class TCZ.Entry
- java.lang.Object
-
- totalcross.util.zip.TCZ.Entry
-
- Enclosing class:
- TCZ
public static class TCZ.Entry extends java.lang.ObjectAn entry of the TCZ file.
-
-
Field Summary
Fields Modifier and Type Field Description byte[]bytesThe compressed byte block.java.lang.ObjectextraAnything you want to hold here.java.lang.StringnameThe name of the entry.intuncompressedSizeThe size of the block when it is uncompressed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a String representing this Entry.
-
-
-
Constructor Detail
-
Entry
public Entry(byte[] bytes, java.lang.String name, int uncompressedSize) throws java.lang.Exception- Throws:
java.lang.Exception
-
Entry
public Entry(byte[] bytes, java.lang.String name, int uncompressedSize, java.lang.Object extra) throws java.lang.Exception- Throws:
java.lang.Exception
-
-