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

net.sf.beezle.ssass.scss.term.Freq Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package net.sf.beezle.ssass.scss.term;

import net.sf.beezle.ssass.scss.Output;

public class Freq implements BaseTerm {
    private final String freq;

    public Freq(String freq) {
        this.freq = freq;
    }

    @Override
    public void toCss(Output output) {
        output.string(freq);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy