CSSValueValue.java 431 B

123456789101112131415161718192021222324
  1. package de.tu_darmstadt.informatik.tk.scopviz.ui.css;
  2. public class CSSValueValue {
  3. // TODO comment
  4. String cssValue;
  5. // TODO comment
  6. int ruleValue;
  7. // TODO comment
  8. CSSValueValue(String cssValue, int ruleValue) {
  9. this.cssValue = cssValue;
  10. this.ruleValue = ruleValue;
  11. }
  12. // TODO comment
  13. String getCssValue() {
  14. return cssValue;
  15. }
  16. // TODO comment
  17. int getRuleValue() {
  18. return ruleValue;
  19. }
  20. }