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

net.sf.beezle.ssass.scss.Expression Maven / Gradle / Ivy

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

import net.sf.beezle.mork.misc.GenericException;

public class Expression implements Base {
    public static final String PLUS = "+";
    public static final String MINUS = "-";

    private final Object[] args;

    public Expression(Object[] args) {
        this.args = args;
    }

    @Override
    public void toCss(Output output) throws GenericException {
        output.object(args);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy