You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ForNode.java 692B

12345678910111213141516171819202122232425262728
  1. package com.vaadin.sass.tree;
  2. public class ForNode extends Node {
  3. private static final long serialVersionUID = -1159180539216623335L;
  4. String var;
  5. String from;
  6. String to;
  7. boolean exclusive;
  8. String body;
  9. public ForNode(String var, String from, String to, boolean exclusive,
  10. String body) {
  11. super();
  12. this.var = var;
  13. this.from = from;
  14. this.to = to;
  15. this.exclusive = exclusive;
  16. this.body = body;
  17. }
  18. @Override
  19. public String toString() {
  20. return "For Node: " + "{variable: " + var + ", from:" + from + ", to: "
  21. + to + ", exclusive: " + exclusive + ", body" + body;
  22. }
  23. }