1 5 6 package org.w3c.tidy; 7 8 33 34 public class StyleProp { 35 36 public StyleProp(String name, String value, StyleProp next) 37 { 38 this.name = name; 39 this.value = value; 40 this.next = next; 41 } 42 43 public StyleProp(String name, String value) 44 { 45 this(name, value, null); 46 } 47 48 public StyleProp() 49 { 50 this(null, null, null); 51 } 52 53 public String name; 54 public String value; 55 public StyleProp next; 56 57 } 58 | Popular Tags |