slieb.blendercss.precompilers.internal.CssPrecompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blender-css Show documentation
Show all versions of blender-css Show documentation
BlenderCss provides a java toolset that compiles css from
different supersets of css together.
The newest version!
package slieb.blendercss.precompilers.internal;
import slieb.blendercss.BlendOptions;
import java.io.File;
import java.io.IOException;
public interface CssPrecompiler {
/**
* @param inputFile
* @return
*/
public Boolean canCompile(File inputFile);
/**
* @param inputFile The input file.
* @return The output file.
* @throws IOException
*/
public File compile(File inputFile, BlendOptions options) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy