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