All Downloads are FREE. Search and download functionalities are using the official Maven repository.

slieb.blendercss.precompilers.internal.CssPrecompiler Maven / Gradle / Ivy

Go to download

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