com.quiotix.html.parser
Class HtmlDocument.TagBlock

java.lang.Object
  extended bycom.quiotix.html.parser.HtmlDocument.HtmlElement
      extended bycom.quiotix.html.parser.HtmlDocument.TagBlock
Enclosing class:
HtmlDocument

public static class HtmlDocument.TagBlock
extends HtmlDocument.HtmlElement

A tag block is a composite structure consisting of a start tag a sequence of HTML elements, and a matching end tag.


Field Summary
 HtmlDocument.ElementSequence body
           
 HtmlDocument.EndTag endTag
           
 HtmlDocument.Tag startTag
           
 
Constructor Summary
HtmlDocument.TagBlock(java.lang.String name, HtmlDocument.AttributeList aList, HtmlDocument.ElementSequence b)
           
 
Method Summary
 void accept(HtmlVisitor v)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

startTag

public HtmlDocument.Tag startTag

endTag

public HtmlDocument.EndTag endTag

body

public HtmlDocument.ElementSequence body
Constructor Detail

HtmlDocument.TagBlock

public HtmlDocument.TagBlock(java.lang.String name,
                             HtmlDocument.AttributeList aList,
                             HtmlDocument.ElementSequence b)
Method Detail

accept

public void accept(HtmlVisitor v)
Specified by:
accept in class HtmlDocument.HtmlElement