Interface CssMinificationService

All Known Implementing Classes:
YUICssMinificationServiceImpl

public interface CssMinificationService
Service that's used to minify CSS
Author:
Jay Aisenbrey (cja769)
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    minifyCss(String filename, Reader reader, Writer writer)
    Minfies the file in "reader" and writes the minified version to "writer"
  • Method Details

    • minifyCss

      void minifyCss(String filename, Reader reader, Writer writer) throws ResourceMinificationException
      Minfies the file in "reader" and writes the minified version to "writer"
      Parameters:
      filename - Name of the file to be minified
      reader - The original file
      writer - The writer that the minified version of the file in "reader" will be written to
      Throws:
      ResourceMinificationException - Failure to successfully minify the bytes in "reader"