org.w3c.tidy
Class AttVal

java.lang.Object
  extended byorg.w3c.tidy.AttVal
All Implemented Interfaces:
java.lang.Cloneable

public class AttVal
extends java.lang.Object
implements java.lang.Cloneable

Attribute/Value linked list node (c) 1998-2000 (W3C) MIT, INRIA, Keio University See Tidy.java for the copyright notice. Derived from HTML Tidy Release 4 Aug 2000

Version:
1.0, 1999/05/22, 1.0.1, 1999/05/29, 1.1, 1999/06/18 Java Bean, 1.2, 1999/07/10 Tidy Release 7 Jul 1999, 1.3, 1999/07/30 Tidy Release 26 Jul 1999, 1.4, 1999/09/04 DOM support, 1.5, 1999/10/23 Tidy Release 27 Sep 1999, 1.6, 1999/11/01 Tidy Release 22 Oct 1999, 1.7, 1999/12/06 Tidy Release 30 Nov 1999, 1.8, 2000/01/22 Tidy Release 13 Jan 2000, 1.9, 2000/06/03 Tidy Release 30 Apr 2000, 1.10, 2000/07/22 Tidy Release 8 Jul 2000, 1.11, 2000/08/16 Tidy Release 4 Aug 2000
Author:
Dave Raggett , Andy Quick (translation to Java)

Field Summary
protected  org.w3c.dom.Attr adapter
           
 Node asp
           
 java.lang.String attribute
           
 int delim
           
 Attribute dict
           
 AttVal next
           
 Node php
           
 java.lang.String value
           
 
Constructor Summary
AttVal()
           
AttVal(AttVal next, Attribute dict, int delim, java.lang.String attribute, java.lang.String value)
           
AttVal(AttVal next, Attribute dict, Node asp, Node php, int delim, java.lang.String attribute, java.lang.String value)
           
 
Method Summary
 Attribute checkAttribute(Lexer lexer, Node node)
           
 void checkUniqueAttribute(Lexer lexer, Node node)
           
protected  java.lang.Object clone()
           
protected  org.w3c.dom.Attr getAdapter()
           
 boolean isBoolAttribute()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

next

public AttVal next

dict

public Attribute dict

asp

public Node asp

php

public Node php

delim

public int delim

attribute

public java.lang.String attribute

value

public java.lang.String value

adapter

protected org.w3c.dom.Attr adapter
Constructor Detail

AttVal

public AttVal()

AttVal

public AttVal(AttVal next,
              Attribute dict,
              int delim,
              java.lang.String attribute,
              java.lang.String value)

AttVal

public AttVal(AttVal next,
              Attribute dict,
              Node asp,
              Node php,
              int delim,
              java.lang.String attribute,
              java.lang.String value)
Method Detail

clone

protected java.lang.Object clone()

isBoolAttribute

public boolean isBoolAttribute()

checkAttribute

public Attribute checkAttribute(Lexer lexer,
                                Node node)

checkUniqueAttribute

public void checkUniqueAttribute(Lexer lexer,
                                 Node node)

getAdapter

protected org.w3c.dom.Attr getAdapter()