package org.aszip.compression
{
/**
* The CompressionMethod class lets you choose the compression algorithms used for the files in the ZIP.
*/
public class CompressionMethod
{
public static var GZIP:String = 'GZIP';
public static var NONE:String = 'NONE';
}
}