org.at4j.zip.builder
Interface ZipBuilderConfiguration

All Known Implementing Classes:
ZipBuilder

public interface ZipBuilderConfiguration

This interface defines an API that can be used to query a Zip builder about its configuration.

Since:
1.0
Author:
Karl Gustafsson

Method Summary
 Charset getFileNameEncodingCharset()
          Get the charset used for encoding file names in the Zip file.
 Charset getTextEncodingCharset()
          Get the charset used for encoding text such as comments in the Zip file.
 

Method Detail

getTextEncodingCharset

Charset getTextEncodingCharset()
Get the charset used for encoding text such as comments in the Zip file.

Returns:
The charset used for encoding text in the Zip file.
See Also:
getFileNameEncodingCharset()

getFileNameEncodingCharset

Charset getFileNameEncodingCharset()
Get the charset used for encoding file names in the Zip file.

Returns:
The charset used for encoding file names in the Zip file.
See Also:
getTextEncodingCharset()