
org.duelengine.css.ast.FunctionNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of css Show documentation
Show all versions of css Show documentation
Standalone CSS3 processor for the JVM
The newest version!
package org.duelengine.css.ast;
/**
* Function invocation
*/
public class FunctionNode extends ContainerValueNode {
public FunctionNode(String value, int index, int line, int column) {
super(value, index, line, column);
}
public FunctionNode(String value, ValueNode... args) {
super(value, args);
}
@Override
public CssNodeType getNodeType() {
return CssNodeType.FUNCTION;
}
}