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

de.agilecoders.wicket.less.ICombinedLessResource Maven / Gradle / Ivy

The newest version!
package de.agilecoders.wicket.less;

import org.apache.wicket.util.io.IClusterable;
import org.apache.wicket.util.time.Time;

/**
 * Represents a less file and all its imported references.
 *
 * @author miha
 */
public interface ICombinedLessResource extends IClusterable {

    /**
     * @return last modification time
     */
    // TODO miha Rename to getModificationTime() ?
    Time getLastModificationTime();

    /**
     * @return this resource as text
     */
    String asText();

    /**
     * @return name of this resource
     */
    String getName();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy