Package railo.commons.io.res.type.compress

Examples of railo.commons.io.res.type.compress.Compress


  private final Map compressResources= new ReferenceMap(ReferenceMap.SOFT,ReferenceMap.SOFT);


  public Compress getCompressInstance(Resource zipFile, int format, boolean caseSensitive) {
    Compress compress=(Compress) compressResources.get(zipFile.getPath());
    if(compress==null) {
      compress=new Compress(zipFile,format,caseSensitive);
      compressResources.put(zipFile.getPath(), compress);
    }
    return compress;
  }
View Full Code Here

TOP

Related Classes of railo.commons.io.res.type.compress.Compress

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.