blob: c3b0e7597960e606df16df045da47712ae2e8f3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.vaadin.sass.resolver;
import org.w3c.css.sac.InputSource;
public interface ScssStylesheetResolver {
/**
* Called with the "identifier" of a stylesheet that the resolver should try
* to find. The identifier is basically a filename, like "runo.scss" or
* "addon/styles.scss", but might exclude ".scss". The resolver must
* {@link InputSource#setURI(String)} to the final location where the
* stylesheet was found, e.g "runo.scss" might result in a URI like
* "VAADIN/themes/runo/runo.scss".
*
* @param identifier
* used fo find stylesheet
* @return InputSource for stylesheet (with URI set) or null if not found
*/
public InputSource resolve(String identifier);
}
|