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

com.lonelystorm.air.asset.services.FileResolver Maven / Gradle / Ivy

Go to download

The LonelyStorm Air Asset library provides support to be able to compile SASS files at runtime.

The newest version!
package com.lonelystorm.air.asset.services;

public interface FileResolver {

    /**
     * Determines if a file exists in the repository.
     *
     * @param location
     * @return
     */
    boolean exists(String location);

    /**
     * Loads the content of a file from the repository.
     *
     * @param location
     * @return
     */
    String load(String location);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy