1 5 6 package org.w3c.tidy; 7 8 33 34 public class Attribute { 35 36 public Attribute( String name, 37 boolean nowrap, 38 short versions, 39 AttrCheck attrchk ) 40 { 41 this.name = name; 42 this.nowrap = nowrap; 43 this.literal = false; 44 this.versions = versions; 45 this.attrchk = attrchk; 46 } 47 48 public Attribute( String name, 49 short versions, 50 AttrCheck attrchk ) 51 { 52 this.name = name; 53 this.nowrap = false; 54 this.literal = false; 55 this.versions = versions; 56 this.attrchk = attrchk; 57 } 58 59 public String name; 60 public boolean nowrap; 61 public boolean literal; 62 public short versions; 63 public AttrCheck attrchk; 64 65 } 66 | Popular Tags |