aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
diff options
context:
space:
mode:
authorMarc Englund <marc@vaadin.com>2012-11-23 13:21:49 +0200
committerVaadin Code Review <review@vaadin.com>2012-11-23 11:47:42 +0000
commitfa7da722662de5ead99226189ca963afebdf5446 (patch)
tree7a6d87dd6ddf2ec6922cc10833a260d9340115eb /theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
parent1c400f042b32046a4becacfb856db4829bd0515d (diff)
downloadvaadin-framework-fa7da722662de5ead99226189ca963afebdf5446.tar.gz
vaadin-framework-fa7da722662de5ead99226189ca963afebdf5446.zip
Make most of the sass compiler API internal, fixes #10339
Change-Id: Ia783142aa96665a26491b659a387490883875d37
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java')
-rw-r--r--theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java88
1 files changed, 0 insertions, 88 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java b/theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
deleted file mode 100644
index 9f51a959b8..0000000000
--- a/theme-compiler/src/com/vaadin/sass/tree/MixinDefNode.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright 2011 Vaadin Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
-package com.vaadin.sass.tree;
-
-import java.util.ArrayList;
-import java.util.Collection;
-
-import com.vaadin.sass.ScssStylesheet;
-import com.vaadin.sass.util.DeepCopy;
-
-public class MixinDefNode extends Node implements IVariableNode {
- private static final long serialVersionUID = 5469294053247343948L;
-
- private String name;
- private ArrayList<VariableNode> arglist;
- private String body;
-
- public MixinDefNode(String name, Collection<VariableNode> args) {
- super();
- this.name = name;
- arglist = new ArrayList<VariableNode>();
- if (args != null && !args.isEmpty()) {
- arglist.addAll(args);
- }
- }
-
- @Override
- public String toString() {
- return "Mixin Definition Node: {name: " + name + ", args: "
- + arglist.size() + ", body: " + body + "}";
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public ArrayList<VariableNode> getArglist() {
- return arglist;
- }
-
- public void setArglist(ArrayList<VariableNode> arglist) {
- this.arglist = arglist;
- }
-
- @Override
- public void replaceVariables(ArrayList<VariableNode> variables) {
- for (final VariableNode var : variables) {
- for (final VariableNode arg : new ArrayList<VariableNode>(arglist)) {
- if (arg.getName().equals(var.getName())
- && arg.getExpr() == null) {
- arglist.add(arglist.indexOf(arg),
- (VariableNode) DeepCopy.copy(var));
- arglist.remove(arg);
- }
- }
- }
- }
-
- @Override
- public void traverse() {
- if (!arglist.isEmpty()) {
- for (final VariableNode arg : arglist) {
- if (arg.getExpr() != null) {
- ScssStylesheet.addVariable(arg);
- }
- }
- }
- }
-
-}