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

com.google.common.css.compiler.ast.CssCharSetNode Maven / Gradle / Ivy

Go to download

Closure Stylesheets is an extension to CSS that adds variables, functions, conditionals, and mixins to standard CSS. The tool also supports minification, linting, RTL flipping, and CSS class renaming.

There is a newer version: 1.8.0
Show newest version
package com.google.common.css.compiler.ast;

import java.util.List;

public class CssCharSetNode extends CssAtRuleNode {

    public CssCharSetNode(List comments) {
        super(CssAtRuleNode.Type.CHARSET, new CssLiteralNode("charset"), comments);
    }

    public CssCharSetNode(CssCharSetNode node) {
        super(node);
    }

    @Override
    public CssNode deepCopy() {
        return new CssCharSetNode(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy