
io.bit3.jsass.context.StringContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vue-gwt-processors Show documentation
Show all versions of vue-gwt-processors Show documentation
Annotation Processors for Vue GWT
The newest version!
package io.bit3.jsass.context;
import io.bit3.jsass.Options;
import java.net.URI;
/**
* A context to compile a string in memory.
*/
public class StringContext extends AbstractContext {
private static final long serialVersionUID = -3016862884676346652L;
/**
* The in-memory sass code.
*/
private String string;
/**
* Create a new string context.
*
* @param string The in-memory sass code.
* @param inputPath The input path used for calculation path changes, or null.
* @param outputPath The output path used for calculation path changes, or null.
* @param options The compiler options.
*/
public StringContext(String string, URI inputPath, URI outputPath, Options options) {
super(inputPath, outputPath, options);
this.string = string;
}
/**
* Return the in-memory sass code.
*
* @return The in-memory sass code.
*/
public String getString() {
return string;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy