com.aliasi.xml
Class XHtmlWriter

java.lang.Object
  extended by org.xml.sax.helpers.DefaultHandler
      extended by com.aliasi.xml.SimpleElementHandler
          extended by com.aliasi.xml.SAXWriter
              extended by com.aliasi.xml.XHtmlWriter
All Implemented Interfaces:
ContentHandler, DTDHandler, EntityResolver, ErrorHandler

public class XHtmlWriter
extends SAXWriter

An XHtmlWriter provides constants and convenience methods for generating strict XHTML 1.0 output. This class includes the Strict DTD specification:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
The XML version and decoding declaration will be included as in the parent class SAXWriter, as in:
<?xml version="1.0" encoding="UTF-8"?>

The parent class SAXWriter is set to use XHTML mode (see SAXWriter.SAXWriter(OutputStream,String,boolean)) output.

It is up to the application to supply an appropriate document structure and to validate any output. For instance, the top-level element must be html, and it must specify the appropriate namespace and language, as in:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

A constant is provided for each legal XHTML element tag and each XHTML attribute. There are six convenience methods supplied to start each element. The first five methods allow from zero to four pairs of attributes and values to be supplied as strings. The sixth method accepts an arbitrary SAX Attributes object to supply the attributes. Elements must be closed using the underlying SAXWriter's end methods, such as SimpleElementHandler.endSimpleElement(String).

Like for SAXWriter, the underlying output stream must be closed by the calling application after the SAXWriter.endDocument() method is called.

Warning: No well-formedness checks are performed on the output. In particular, elements may not be balanced leading to invalid XML, or elements may not provide attributes matching the XHTML 1.0 specification. We suggest validating HTML using the W3C validator.

Since:
LingPipe2.3.1
Version:
2.3.1
Author:
Bob Carpenter

Field Summary
static String A
          Constant for element a.
static String ABBR
          Constant for element abbr.
static String ABBR_ATT
          A constant for the abbr attribute.
static String ACCEPT
          A constant for the accept attribute.
static String ACCEPT_CHARSET
          A constant for the accept-charset attribute.
static String ACCESSKEY
          A constant for the accesskey attribute.
static String ACRONYM
          Constant for element acronym.
static String ACTION
          A constant for the action attribute.
static String ADDRESS
          Constant for element address.
static String ALIGN
          A constant for the align attribute.
static String ALT
          A constant for the alt attribute.
static String APPLET
          Constant for element applet.
static String ARCHIVE
          A constant for the archive attribute.
static String AREA
          Constant for element area.
static String AXIS
          A constant for the axis attribute.
static String B
          Constant for element b.
static String BASE
          Constant for element base.
static String BASEFONT
          Constant for element basefont.
static String BDO
          Constant for element bdo.
static String BIG
          Constant for element big.
static String BLOCKQUOTE
          Constant for element blockquote.
static String BODY
          Constant for element body.
static String BORDER
          A constant for the border attribute.
static String BR
          Constant for element br.
static String BUTTON
          Constant for element button.
static String CAPTION
          Constant for element caption.
static String CELLPADDING
          A constant for the cellpadding attribute.
static String CELLSPACING
          A constant for the cellspacing attribute.
static String CENTER
          Constant for element center.
static String CHAR
          A constant for the char attribute.
static String CHAROFF
          A constant for the charoff attribute.
static String CHARSET
          A constant for the charset attribute.
static String CHECKED
          A constant for the checked attribute.
static String CITE
          Constant for element cite.
static String CITE_ATT
          A constant for the cite attribute.
static String CLASS
          A constant for the class attribute.
static String CLASSID
          A constant for the classid attribute.
static String CODE
          Constant for element code.
static String CODEBASE
          A constant for the codebase attribute.
static String CODETYPE
          A constant for the codetype attribute.
static String COL
          Constant for element col.
static String COLGROUP
          Constant for element colgroup.
static String COLS
          A constant for the cols attribute.
static String COLSPAN
          A constant for the colspan attribute.
static String CONTENT
          A constant for the content attribute.
static String COORDS
          A constant for the coords attribute.
static String DATA
          A constant for the data attribute.
static String DATETIME
          A constant for the datetime attribute.
static String DD
          Constant for element dd.
static String DECLARE
          A constant for the declare attribute.
static String DEFER
          A constant for the defer attribute.
static String DEL
          Constant for element del.
static String DFN
          Constant for element dfn.
static String DIR
          Constant for element dir.
static String DIR_ATT
          A constant for the dir attribute.
static String DISABLED
          A constant for the disabled attribute.
static String DIV
          Constant for element div.
static String DL
          Constant for element dl.
static String DT
          Constant for element dt.
static String EM
          Constant for element em.
static String ENCTYPE
          A constant for the enctype attribute.
static String FIELDSET
          Constant for element fieldset.
static String FONT
          Constant for element font.
static String FOR
          A constant for the for attribute.
static String FORM
          Constant for element form.
static String FRAME
          Constant for element frame.
static String FRAME_ATT
          A constant for the frame attribute.
static String FRAMESET
          Constant for element frameset.
static String H1
          Constant for element h1.
static String H2
          Constant for element h2.
static String H3
          Constant for element h3.
static String H4
          Constant for element h4.
static String H5
          Constant for element h5.
static String H6
          Constant for element h6.
static String HEAD
          Constant for element head.
static String HEADERS
          A constant for the headers attribute.
static String HEIGHT
          A constant for the height attribute.
static String HR
          Constant for element hr.
static String HREF
          A constant for the href attribute.
static String HREFLANG
          A constant for the hreflang attribute.
static String HTML
          Constant for element html.
static String HTTP_EQUIV
          A constant for the http-equiv attribute.
static String I
          Constant for element i.
static String ID
          A constant for the id attribute.
static String IFRAME
          Constant for element iframe.
static String IMG
          Constant for element img.
static String INPUT
          Constant for element input.
static String INS
          Constant for element ins.
static String ISMAP
          A constant for the ismap attribute.
static String KBD
          Constant for element kbd.
static String LABEL
          Constant for element label.
static String LABEL_ATT
          A constant for the label attribute.
static String LANG
          A constant for the lang attribute.
static String LEGEND
          Constant for element legend.
static String LI
          Constant for element li.
static String LINK
          Constant for element link.
static String LONGDESC
          A constant for the longdesc attribute.
static String MAP
          Constant for element map.
static String MAXLENGTH
          A constant for the maxlength attribute.
static String MEDIA
          A constant for the media attribute.
static String MENU
          Constant for element menu.
static String META
          Constant for element meta.
static String METHOD
          A constant for the method attribute.
static String MULTIPLE
          A constant for the multiple attribute.
static String NAME
          A constant for the name attribute.
static String NOFRAMES
          Constant for element noframes.
static String NOHREF
          A constant for the nohref attribute.
static String NOSCRIPT
          Constant for element noscript.
static String OBJECT
          Constant for element object.
static String OL
          Constant for element ol.
static String ONBLUR
          A constant for the onblur attribute.
static String ONCHANGE
          A constant for the onchange attribute.
static String ONCLICK
          A constant for the onclick attribute.
static String ONDBLCLICK
          A constant for the ondblclick attribute.
static String ONFOCUS
          A constant for the onfocus attribute.
static String ONKEYDOWN
          A constant for the onkeydown attribute.
static String ONKEYPRESS
          A constant for the onkeypress attribute.
static String ONKEYUP
          A constant for the onkeyup attribute.
static String ONLOAD
          A constant for the onload attribute.
static String ONMOUSEDOWN
          A constant for the onmousedown attribute.
static String ONMOUSEMOVE
          A constant for the onmousemove attribute.
static String ONMOUSEOUT
          A constant for the onmouseout attribute.
static String ONMOUSEOVER
          A constant for the onmouseover attribute.
static String ONMOUSEUP
          A constant for the onmouseup attribute.
static String ONRESET
          A constant for the onreset attribute.
static String ONSELECT
          A constant for the onselect attribute.
static String ONSUBMIT
          A constant for the onsubmit attribute.
static String ONUNLOAD
          A constant for the onunload attribute.
static String OPTGROUP
          Constant for element optgroup.
static String OPTION
          Constant for element option.
static String P
          Constant for element p.
static String PARAM
          Constant for element param.
static String PRE
          Constant for element pre.
static String PROFILE
          A constant for the profile attribute.
static String Q
          Constant for element q.
static String READONLY
          A constant for the readonly attribute.
static String REL
          A constant for the rel attribute.
static String REV
          A constant for the rev attribute.
static String ROWS
          A constant for the rows attribute.
static String ROWSPAN
          A constant for the rowspan attribute.
static String RULES
          A constant for the rules attribute.
static String S
          Constant for element s.
static String SAMP
          Constant for element samp.
static String SCHEME
          A constant for the scheme attribute.
static String SCOPE
          A constant for the scope attribute.
static String SCRIPT
          Constant for element script.
static String SELECT
          Constant for element select.
static String SELECTED
          A constant for the selected attribute.
static String SHAPE
          A constant for the shape attribute.
static String SIZE
          A constant for the size attribute.
static String SMALL
          Constant for element small.
static String SPAN
          Constant for element span.
static String SPAN_ATT
          A constant for the span attribute.
static String SRC
          A constant for the src attribute.
static String STANDBY
          A constant for the standby attribute.
static String STRIKE
          Constant for element strike.
static String STRONG
          Constant for element strong.
static String STYLE
          Constant for element style.
static String STYLE_ATT
          A constant for the style attribute.
static String SUB
          Constant for element sub.
static String SUMMARY
          A constant for the summary attribute.
static String SUP
          Constant for element sup.
static String TABINDEX
          A constant for the tabindex attribute.
static String TABLE
          Constant for element table.
static String TBODY
          Constant for element tbody.
static String TD
          Constant for element td.
static String TEXTAREA
          Constant for element textarea.
static String TFOOT
          Constant for element tfoot.
static String TH
          Constant for element th.
static String THEAD
          Constant for element thead.
static String TITLE
          Constant for element title.
static String TITLE_ATT
          A constant for the title attribute.
static String TR
          Constant for element tr.
static String TT
          Constant for element tt.
static String TYPE
          A constant for the type attribute.
static String U
          Constant for element u.
static String UL
          Constant for element ul.
static String USEMAP
          A constant for the usemap attribute.
static String VALIGN
          A constant for the valign attribute.
static String VALUE
          A constant for the value attribute.
static String VALUETYPE
          A constant for the valuetype attribute.
static String VAR
          Constant for element var.
static String WIDTH
          A constant for the width attribute.
static String XML_LANG
          A constant for the xml:lang attribute.
static String XML_SPACE
          A constant for the xml:space attribute.
static String XMLNS
          A constant for the xmlns attribute.
 
Fields inherited from class com.aliasi.xml.SimpleElementHandler
CDATA_ATTS_TYPE, EMPTY_ATTS, NO_OP_DEFAULT_HANDLER
 
Constructor Summary
XHtmlWriter()
           
XHtmlWriter(OutputStream out, String charsetName)
           
 
Method Summary
 void a()
          Start an a element with no attributes.
 void a(Attributes atts)
          Start an a element with the specified attributes.
 void a(String att, String val)
          Start an a element with the specified attribute and value.
 void a(String att1, String val1, String att2, String val2)
          Start an a element with the specified attributes and values.
 void a(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an a element with the specified attributes and values.
 void a(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an a element with the specified attributes and values.
 void abbr()
          Start an abbr element with no attributes.
 void abbr(Attributes atts)
          Start an abbr element with the specified attributes.
 void abbr(String att, String val)
          Start an abbr element with the specified attribute and value.
 void abbr(String att1, String val1, String att2, String val2)
          Start an abbr element with the specified attributes and values.
 void abbr(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an abbr element with the specified attributes and values.
 void abbr(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an abbr element with the specified attributes and values.
 void acronym()
          Start an acronym element with no attributes.
 void acronym(Attributes atts)
          Start an acronym element with the specified attributes.
 void acronym(String att, String val)
          Start an acronym element with the specified attribute and value.
 void acronym(String att1, String val1, String att2, String val2)
          Start an acronym element with the specified attributes and values.
 void acronym(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an acronym element with the specified attributes and values.
 void acronym(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an acronym element with the specified attributes and values.
 void address()
          Start an address element with no attributes.
 void address(Attributes atts)
          Start an address element with the specified attributes.
 void address(String att, String val)
          Start an address element with the specified attribute and value.
 void address(String att1, String val1, String att2, String val2)
          Start an address element with the specified attributes and values.
 void address(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an address element with the specified attributes and values.
 void address(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an address element with the specified attributes and values.
 void applet()
          Start an applet element with no attributes.
 void applet(Attributes atts)
          Start an applet element with the specified attributes.
 void applet(String att, String val)
          Start an applet element with the specified attribute and value.
 void applet(String att1, String val1, String att2, String val2)
          Start an applet element with the specified attributes and values.
 void applet(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an applet element with the specified attributes and values.
 void applet(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an applet element with the specified attributes and values.
 void area()
          Start an area element with no attributes.
 void area(Attributes atts)
          Start an area element with the specified attributes.
 void area(String att, String val)
          Start an area element with the specified attribute and value.
 void area(String att1, String val1, String att2, String val2)
          Start an area element with the specified attributes and values.
 void area(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an area element with the specified attributes and values.
 void area(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an area element with the specified attributes and values.
 void b()
          Start an b element with no attributes.
 void b(Attributes atts)
          Start an b element with the specified attributes.
 void b(String att, String val)
          Start an b element with the specified attribute and value.
 void b(String att1, String val1, String att2, String val2)
          Start an b element with the specified attributes and values.
 void b(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an b element with the specified attributes and values.
 void b(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an b element with the specified attributes and values.
 void base()
          Start an base element with no attributes.
 void base(Attributes atts)
          Start an base element with the specified attributes.
 void base(String att, String val)
          Start an base element with the specified attribute and value.
 void base(String att1, String val1, String att2, String val2)
          Start an base element with the specified attributes and values.
 void base(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an base element with the specified attributes and values.
 void base(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an base element with the specified attributes and values.
 void basefont()
          Start an basefont element with no attributes.
 void basefont(Attributes atts)
          Start an basefont element with the specified attributes.
 void basefont(String att, String val)
          Start an basefont element with the specified attribute and value.
 void basefont(String att1, String val1, String att2, String val2)
          Start an basefont element with the specified attributes and values.
 void basefont(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an basefont element with the specified attributes and values.
 void basefont(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an basefont element with the specified attributes and values.
 void bdo()
          Start an bdo element with no attributes.
 void bdo(Attributes atts)
          Start an bdo element with the specified attributes.
 void bdo(String att, String val)
          Start an bdo element with the specified attribute and value.
 void bdo(String att1, String val1, String att2, String val2)
          Start an bdo element with the specified attributes and values.
 void bdo(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an bdo element with the specified attributes and values.
 void bdo(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an bdo element with the specified attributes and values.
 void big()
          Start an big element with no attributes.
 void big(Attributes atts)
          Start an big element with the specified attributes.
 void big(String att, String val)
          Start an big element with the specified attribute and value.
 void big(String att1, String val1, String att2, String val2)
          Start an big element with the specified attributes and values.
 void big(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an big element with the specified attributes and values.
 void big(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an big element with the specified attributes and values.
 void blockquote()
          Start an blockquote element with no attributes.
 void blockquote(Attributes atts)
          Start an blockquote element with the specified attributes.
 void blockquote(String att, String val)
          Start an blockquote element with the specified attribute and value.
 void blockquote(String att1, String val1, String att2, String val2)
          Start an blockquote element with the specified attributes and values.
 void blockquote(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an blockquote element with the specified attributes and values.
 void blockquote(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an blockquote element with the specified attributes and values.
 void body()
          Start an body element with no attributes.
 void body(Attributes atts)
          Start an body element with the specified attributes.
 void body(String att, String val)
          Start an body element with the specified attribute and value.
 void body(String att1, String val1, String att2, String val2)
          Start an body element with the specified attributes and values.
 void body(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an body element with the specified attributes and values.
 void body(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an body element with the specified attributes and values.
 void br()
          Start an br element with no attributes.
 void br(Attributes atts)
          Start an br element with the specified attributes.
 void br(String att, String val)
          Start an br element with the specified attribute and value.
 void br(String att1, String val1, String att2, String val2)
          Start an br element with the specified attributes and values.
 void br(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an br element with the specified attributes and values.
 void br(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an br element with the specified attributes and values.
 void button()
          Start an button element with no attributes.
 void button(Attributes atts)
          Start an button element with the specified attributes.
 void button(String att, String val)
          Start an button element with the specified attribute and value.
 void button(String att1, String val1, String att2, String val2)
          Start an button element with the specified attributes and values.
 void button(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an button element with the specified attributes and values.
 void button(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an button element with the specified attributes and values.
 void caption()
          Start an caption element with no attributes.
 void caption(Attributes atts)
          Start an caption element with the specified attributes.
 void caption(String att, String val)
          Start an caption element with the specified attribute and value.
 void caption(String att1, String val1, String att2, String val2)
          Start an caption element with the specified attributes and values.
 void caption(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an caption element with the specified attributes and values.
 void caption(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an caption element with the specified attributes and values.
 void center()
          Start an center element with no attributes.
 void center(Attributes atts)
          Start an center element with the specified attributes.
 void center(String att, String val)
          Start an center element with the specified attribute and value.
 void center(String att1, String val1, String att2, String val2)
          Start an center element with the specified attributes and values.
 void center(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an center element with the specified attributes and values.
 void center(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an center element with the specified attributes and values.
 void cite()
          Start an cite element with no attributes.
 void cite(Attributes atts)
          Start an cite element with the specified attributes.
 void cite(String att, String val)
          Start an cite element with the specified attribute and value.
 void cite(String att1, String val1, String att2, String val2)
          Start an cite element with the specified attributes and values.
 void cite(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an cite element with the specified attributes and values.
 void cite(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an cite element with the specified attributes and values.
 void code()
          Start an code element with no attributes.
 void code(Attributes atts)
          Start an code element with the specified attributes.
 void code(String att, String val)
          Start an code element with the specified attribute and value.
 void code(String att1, String val1, String att2, String val2)
          Start an code element with the specified attributes and values.
 void code(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an code element with the specified attributes and values.
 void code(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an code element with the specified attributes and values.
 void col()
          Start an col element with no attributes.
 void col(Attributes atts)
          Start an col element with the specified attributes.
 void col(String att, String val)
          Start an col element with the specified attribute and value.
 void col(String att1, String val1, String att2, String val2)
          Start an col element with the specified attributes and values.
 void col(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an col element with the specified attributes and values.
 void col(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an col element with the specified attributes and values.
 void colgroup()
          Start an colgroup element with no attributes.
 void colgroup(Attributes atts)
          Start an colgroup element with the specified attributes.
 void colgroup(String att, String val)
          Start an colgroup element with the specified attribute and value.
 void colgroup(String att1, String val1, String att2, String val2)
          Start an colgroup element with the specified attributes and values.
 void colgroup(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an colgroup element with the specified attributes and values.
 void colgroup(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an colgroup element with the specified attributes and values.
 void dd()
          Start an dd element with no attributes.
 void dd(Attributes atts)
          Start an dd element with the specified attributes.
 void dd(String att, String val)
          Start an dd element with the specified attribute and value.
 void dd(String att1, String val1, String att2, String val2)
          Start an dd element with the specified attributes and values.
 void dd(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an dd element with the specified attributes and values.
 void dd(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an dd element with the specified attributes and values.
 void del()
          Start an del element with no attributes.
 void del(Attributes atts)
          Start an del element with the specified attributes.
 void del(String att, String val)
          Start an del element with the specified attribute and value.
 void del(String att1, String val1, String att2, String val2)
          Start an del element with the specified attributes and values.
 void del(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an del element with the specified attributes and values.
 void del(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an del element with the specified attributes and values.
 void dfn()
          Start an dfn element with no attributes.
 void dfn(Attributes atts)
          Start an dfn element with the specified attributes.
 void dfn(String att, String val)
          Start an dfn element with the specified attribute and value.
 void dfn(String att1, String val1, String att2, String val2)
          Start an dfn element with the specified attributes and values.
 void dfn(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an dfn element with the specified attributes and values.
 void dfn(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an dfn element with the specified attributes and values.
 void dir()
          Start an dir element with no attributes.
 void dir(Attributes atts)
          Start an dir element with the specified attributes.
 void dir(String att, String val)
          Start an dir element with the specified attribute and value.
 void dir(String att1, String val1, String att2, String val2)
          Start an dir element with the specified attributes and values.
 void dir(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an dir element with the specified attributes and values.
 void dir(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an dir element with the specified attributes and values.
 void div()
          Start an div element with no attributes.
 void div(Attributes atts)
          Start an div element with the specified attributes.
 void div(String att, String val)
          Start an div element with the specified attribute and value.
 void div(String att1, String val1, String att2, String val2)
          Start an div element with the specified attributes and values.
 void div(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an div element with the specified attributes and values.
 void div(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an div element with the specified attributes and values.
 void dl()
          Start an dl element with no attributes.
 void dl(Attributes atts)
          Start an dl element with the specified attributes.
 void dl(String att, String val)
          Start an dl element with the specified attribute and value.
 void dl(String att1, String val1, String att2, String val2)
          Start an dl element with the specified attributes and values.
 void dl(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an dl element with the specified attributes and values.
 void dl(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an dl element with the specified attributes and values.
 void dt()
          Start an dt element with no attributes.
 void dt(Attributes atts)
          Start an dt element with the specified attributes.
 void dt(String att, String val)
          Start an dt element with the specified attribute and value.
 void dt(String att1, String val1, String att2, String val2)
          Start an dt element with the specified attributes and values.
 void dt(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an dt element with the specified attributes and values.
 void dt(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an dt element with the specified attributes and values.
 void em()
          Start an em element with no attributes.
 void em(Attributes atts)
          Start an em element with the specified attributes.
 void em(String att, String val)
          Start an em element with the specified attribute and value.
 void em(String att1, String val1, String att2, String val2)
          Start an em element with the specified attributes and values.
 void em(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an em element with the specified attributes and values.
 void em(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an em element with the specified attributes and values.
 void fieldset()
          Start an fieldset element with no attributes.
 void fieldset(Attributes atts)
          Start an fieldset element with the specified attributes.
 void fieldset(String att, String val)
          Start an fieldset element with the specified attribute and value.
 void fieldset(String att1, String val1, String att2, String val2)
          Start an fieldset element with the specified attributes and values.
 void fieldset(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an fieldset element with the specified attributes and values.
 void fieldset(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an fieldset element with the specified attributes and values.
 void font()
          Start an font element with no attributes.
 void font(Attributes atts)
          Start an font element with the specified attributes.
 void font(String att, String val)
          Start an font element with the specified attribute and value.
 void font(String att1, String val1, String att2, String val2)
          Start an font element with the specified attributes and values.
 void font(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an font element with the specified attributes and values.
 void font(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an font element with the specified attributes and values.
 void form()
          Start an form element with no attributes.
 void form(Attributes atts)
          Start an form element with the specified attributes.
 void form(String att, String val)
          Start an form element with the specified attribute and value.
 void form(String att1, String val1, String att2, String val2)
          Start an form element with the specified attributes and values.
 void form(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an form element with the specified attributes and values.
 void form(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an form element with the specified attributes and values.
 void frame()
          Start an frame element with no attributes.
 void frame(Attributes atts)
          Start an frame element with the specified attributes.
 void frame(String att, String val)
          Start an frame element with the specified attribute and value.
 void frame(String att1, String val1, String att2, String val2)
          Start an frame element with the specified attributes and values.
 void frame(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an frame element with the specified attributes and values.
 void frame(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an frame element with the specified attributes and values.
 void frameset()
          Start an frameset element with no attributes.
 void frameset(Attributes atts)
          Start an frameset element with the specified attributes.
 void frameset(String att, String val)
          Start an frameset element with the specified attribute and value.
 void frameset(String att1, String val1, String att2, String val2)
          Start an frameset element with the specified attributes and values.
 void frameset(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an frameset element with the specified attributes and values.
 void frameset(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an frameset element with the specified attributes and values.
 void h1()
          Start an h1 element with no attributes.
 void h1(Attributes atts)
          Start an h1 element with the specified attributes.
 void h1(String att, String val)
          Start an h1 element with the specified attribute and value.
 void h1(String att1, String val1, String att2, String val2)
          Start an h1 element with the specified attributes and values.
 void h1(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h1 element with the specified attributes and values.
 void h1(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h1 element with the specified attributes and values.
 void h2()
          Start an h2 element with no attributes.
 void h2(Attributes atts)
          Start an h2 element with the specified attributes.
 void h2(String att, String val)
          Start an h2 element with the specified attribute and value.
 void h2(String att1, String val1, String att2, String val2)
          Start an h2 element with the specified attributes and values.
 void h2(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h2 element with the specified attributes and values.
 void h2(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h2 element with the specified attributes and values.
 void h3()
          Start an h3 element with no attributes.
 void h3(Attributes atts)
          Start an h3 element with the specified attributes.
 void h3(String att, String val)
          Start an h3 element with the specified attribute and value.
 void h3(String att1, String val1, String att2, String val2)
          Start an h3 element with the specified attributes and values.
 void h3(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h3 element with the specified attributes and values.
 void h3(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h3 element with the specified attributes and values.
 void h4()
          Start an h4 element with no attributes.
 void h4(Attributes atts)
          Start an h4 element with the specified attributes.
 void h4(String att, String val)
          Start an h4 element with the specified attribute and value.
 void h4(String att1, String val1, String att2, String val2)
          Start an h4 element with the specified attributes and values.
 void h4(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h4 element with the specified attributes and values.
 void h4(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h4 element with the specified attributes and values.
 void h5()
          Start an h5 element with no attributes.
 void h5(Attributes atts)
          Start an h5 element with the specified attributes.
 void h5(String att, String val)
          Start an h5 element with the specified attribute and value.
 void h5(String att1, String val1, String att2, String val2)
          Start an h5 element with the specified attributes and values.
 void h5(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h5 element with the specified attributes and values.
 void h5(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h5 element with the specified attributes and values.
 void h6()
          Start an h6 element with no attributes.
 void h6(Attributes atts)
          Start an h6 element with the specified attributes.
 void h6(String att, String val)
          Start an h6 element with the specified attribute and value.
 void h6(String att1, String val1, String att2, String val2)
          Start an h6 element with the specified attributes and values.
 void h6(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an h6 element with the specified attributes and values.
 void h6(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an h6 element with the specified attributes and values.
 void head()
          Start an head element with no attributes.
 void head(Attributes atts)
          Start an head element with the specified attributes.
 void head(String att, String val)
          Start an head element with the specified attribute and value.
 void head(String att1, String val1, String att2, String val2)
          Start an head element with the specified attributes and values.
 void head(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an head element with the specified attributes and values.
 void head(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an head element with the specified attributes and values.
 void hr()
          Start an hr element with no attributes.
 void hr(Attributes atts)
          Start an hr element with the specified attributes.
 void hr(String att, String val)
          Start an hr element with the specified attribute and value.
 void hr(String att1, String val1, String att2, String val2)
          Start an hr element with the specified attributes and values.
 void hr(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an hr element with the specified attributes and values.
 void hr(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an hr element with the specified attributes and values.
 void html()
          Start an html element with no attributes.
 void html(Attributes atts)
          Start an html element with the specified attributes.
 void html(String att, String val)
          Start an html element with the specified attribute and value.
 void html(String att1, String val1, String att2, String val2)
          Start an html element with the specified attributes and values.
 void html(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an html element with the specified attributes and values.
 void html(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an html element with the specified attributes and values.
 void i()
          Start an i element with no attributes.
 void i(Attributes atts)
          Start an i element with the specified attributes.
 void i(String att, String val)
          Start an i element with the specified attribute and value.
 void i(String att1, String val1, String att2, String val2)
          Start an i element with the specified attributes and values.
 void i(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an i element with the specified attributes and values.
 void i(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an i element with the specified attributes and values.
 void iframe()
          Start an iframe element with no attributes.
 void iframe(Attributes atts)
          Start an iframe element with the specified attributes.
 void iframe(String att, String val)
          Start an iframe element with the specified attribute and value.
 void iframe(String att1, String val1, String att2, String val2)
          Start an iframe element with the specified attributes and values.
 void iframe(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an iframe element with the specified attributes and values.
 void iframe(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an iframe element with the specified attributes and values.
 void img()
          Start an img element with no attributes.
 void img(Attributes atts)
          Start an img element with the specified attributes.
 void img(String att, String val)
          Start an img element with the specified attribute and value.
 void img(String att1, String val1, String att2, String val2)
          Start an img element with the specified attributes and values.
 void img(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an img element with the specified attributes and values.
 void img(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an img element with the specified attributes and values.
 void input()
          Start an input element with no attributes.
 void input(Attributes atts)
          Start an input element with the specified attributes.
 void input(String att, String val)
          Start an input element with the specified attribute and value.
 void input(String att1, String val1, String att2, String val2)
          Start an input element with the specified attributes and values.
 void input(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an input element with the specified attributes and values.
 void input(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an input element with the specified attributes and values.
 void ins()
          Start an ins element with no attributes.
 void ins(Attributes atts)
          Start an ins element with the specified attributes.
 void ins(String att, String val)
          Start an ins element with the specified attribute and value.
 void ins(String att1, String val1, String att2, String val2)
          Start an ins element with the specified attributes and values.
 void ins(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an ins element with the specified attributes and values.
 void ins(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an ins element with the specified attributes and values.
 void kbd()
          Start an kbd element with no attributes.
 void kbd(Attributes atts)
          Start an kbd element with the specified attributes.
 void kbd(String att, String val)
          Start an kbd element with the specified attribute and value.
 void kbd(String att1, String val1, String att2, String val2)
          Start an kbd element with the specified attributes and values.
 void kbd(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an kbd element with the specified attributes and values.
 void kbd(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an kbd element with the specified attributes and values.
 void label()
          Start an label element with no attributes.
 void label(Attributes atts)
          Start an label element with the specified attributes.
 void label(String att, String val)
          Start an label element with the specified attribute and value.
 void label(String att1, String val1, String att2, String val2)
          Start an label element with the specified attributes and values.
 void label(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an label element with the specified attributes and values.
 void label(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an label element with the specified attributes and values.
 void legend()
          Start an legend element with no attributes.
 void legend(Attributes atts)
          Start an legend element with the specified attributes.
 void legend(String att, String val)
          Start an legend element with the specified attribute and value.
 void legend(String att1, String val1, String att2, String val2)
          Start an legend element with the specified attributes and values.
 void legend(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an legend element with the specified attributes and values.
 void legend(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an legend element with the specified attributes and values.
 void li()
          Start an li element with no attributes.
 void li(Attributes atts)
          Start an li element with the specified attributes.
 void li(String att, String val)
          Start an li element with the specified attribute and value.
 void li(String att1, String val1, String att2, String val2)
          Start an li element with the specified attributes and values.
 void li(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an li element with the specified attributes and values.
 void li(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an li element with the specified attributes and values.
 void link()
          Start an link element with no attributes.
 void link(Attributes atts)
          Start an link element with the specified attributes.
 void link(String att, String val)
          Start an link element with the specified attribute and value.
 void link(String att1, String val1, String att2, String val2)
          Start an link element with the specified attributes and values.
 void link(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an link element with the specified attributes and values.
 void link(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an link element with the specified attributes and values.
 void map()
          Start an map element with no attributes.
 void map(Attributes atts)
          Start an map element with the specified attributes.
 void map(String att, String val)
          Start an map element with the specified attribute and value.
 void map(String att1, String val1, String att2, String val2)
          Start an map element with the specified attributes and values.
 void map(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an map element with the specified attributes and values.
 void map(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an map element with the specified attributes and values.
 void menu()
          Start an menu element with no attributes.
 void menu(Attributes atts)
          Start an menu element with the specified attributes.
 void menu(String att, String val)
          Start an menu element with the specified attribute and value.
 void menu(String att1, String val1, String att2, String val2)
          Start an menu element with the specified attributes and values.
 void menu(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an menu element with the specified attributes and values.
 void menu(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an menu element with the specified attributes and values.
 void meta()
          Start an meta element with no attributes.
 void meta(Attributes atts)
          Start an meta element with the specified attributes.
 void meta(String att, String val)
          Start an meta element with the specified attribute and value.
 void meta(String att1, String val1, String att2, String val2)
          Start an meta element with the specified attributes and values.
 void meta(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an meta element with the specified attributes and values.
 void meta(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an meta element with the specified attributes and values.
 void noframes()
          Start an noframes element with no attributes.
 void noframes(Attributes atts)
          Start an noframes element with the specified attributes.
 void noframes(String att, String val)
          Start an noframes element with the specified attribute and value.
 void noframes(String att1, String val1, String att2, String val2)
          Start an noframes element with the specified attributes and values.
 void noframes(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an noframes element with the specified attributes and values.
 void noframes(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an noframes element with the specified attributes and values.
 void noscript()
          Start an noscript element with no attributes.
 void noscript(Attributes atts)
          Start an noscript element with the specified attributes.
 void noscript(String att, String val)
          Start an noscript element with the specified attribute and value.
 void noscript(String att1, String val1, String att2, String val2)
          Start an noscript element with the specified attributes and values.
 void noscript(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an noscript element with the specified attributes and values.
 void noscript(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an noscript element with the specified attributes and values.
 void object()
          Start an object element with no attributes.
 void object(Attributes atts)
          Start an object element with the specified attributes.
 void object(String att, String val)
          Start an object element with the specified attribute and value.
 void object(String att1, String val1, String att2, String val2)
          Start an object element with the specified attributes and values.
 void object(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an object element with the specified attributes and values.
 void object(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an object element with the specified attributes and values.
 void ol()
          Start an ol element with no attributes.
 void ol(Attributes atts)
          Start an ol element with the specified attributes.
 void ol(String att, String val)
          Start an ol element with the specified attribute and value.
 void ol(String att1, String val1, String att2, String val2)
          Start an ol element with the specified attributes and values.
 void ol(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an ol element with the specified attributes and values.
 void ol(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an ol element with the specified attributes and values.
 void optgroup()
          Start an optgroup element with no attributes.
 void optgroup(Attributes atts)
          Start an optgroup element with the specified attributes.
 void optgroup(String att, String val)
          Start an optgroup element with the specified attribute and value.
 void optgroup(String att1, String val1, String att2, String val2)
          Start an optgroup element with the specified attributes and values.
 void optgroup(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an optgroup element with the specified attributes and values.
 void optgroup(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an optgroup element with the specified attributes and values.
 void option()
          Start an option element with no attributes.
 void option(Attributes atts)
          Start an option element with the specified attributes.
 void option(String att, String val)
          Start an option element with the specified attribute and value.
 void option(String att1, String val1, String att2, String val2)
          Start an option element with the specified attributes and values.
 void option(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an option element with the specified attributes and values.
 void option(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an option element with the specified attributes and values.
 void p()
          Start an p element with no attributes.
 void p(Attributes atts)
          Start an p element with the specified attributes.
 void p(String att, String val)
          Start an p element with the specified attribute and value.
 void p(String att1, String val1, String att2, String val2)
          Start an p element with the specified attributes and values.
 void p(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an p element with the specified attributes and values.
 void p(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an p element with the specified attributes and values.
 void param()
          Start an param element with no attributes.
 void param(Attributes atts)
          Start an param element with the specified attributes.
 void param(String att, String val)
          Start an param element with the specified attribute and value.
 void param(String att1, String val1, String att2, String val2)
          Start an param element with the specified attributes and values.
 void param(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an param element with the specified attributes and values.
 void param(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an param element with the specified attributes and values.
 void pre()
          Start an pre element with no attributes.
 void pre(Attributes atts)
          Start an pre element with the specified attributes.
 void pre(String att, String val)
          Start an pre element with the specified attribute and value.
 void pre(String att1, String val1, String att2, String val2)
          Start an pre element with the specified attributes and values.
 void pre(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an pre element with the specified attributes and values.
 void pre(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an pre element with the specified attributes and values.
 void q()
          Start an q element with no attributes.
 void q(Attributes atts)
          Start an q element with the specified attributes.
 void q(String att, String val)
          Start an q element with the specified attribute and value.
 void q(String att1, String val1, String att2, String val2)
          Start an q element with the specified attributes and values.
 void q(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an q element with the specified attributes and values.
 void q(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an q element with the specified attributes and values.
 void s()
          Start an s element with no attributes.
 void s(Attributes atts)
          Start an s element with the specified attributes.
 void s(String att, String val)
          Start an s element with the specified attribute and value.
 void s(String att1, String val1, String att2, String val2)
          Start an s element with the specified attributes and values.
 void s(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an s element with the specified attributes and values.
 void s(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an s element with the specified attributes and values.
 void samp()
          Start an samp element with no attributes.
 void samp(Attributes atts)
          Start an samp element with the specified attributes.
 void samp(String att, String val)
          Start an samp element with the specified attribute and value.
 void samp(String att1, String val1, String att2, String val2)
          Start an samp element with the specified attributes and values.
 void samp(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an samp element with the specified attributes and values.
 void samp(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an samp element with the specified attributes and values.
 void script()
          Start an script element with no attributes.
 void script(Attributes atts)
          Start an script element with the specified attributes.
 void script(String att, String val)
          Start an script element with the specified attribute and value.
 void script(String att1, String val1, String att2, String val2)
          Start an script element with the specified attributes and values.
 void script(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an script element with the specified attributes and values.
 void script(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an script element with the specified attributes and values.
 void select()
          Start an select element with no attributes.
 void select(Attributes atts)
          Start an select element with the specified attributes.
 void select(String att, String val)
          Start an select element with the specified attribute and value.
 void select(String att1, String val1, String att2, String val2)
          Start an select element with the specified attributes and values.
 void select(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an select element with the specified attributes and values.
 void select(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an select element with the specified attributes and values.
 void small()
          Start an small element with no attributes.
 void small(Attributes atts)
          Start an small element with the specified attributes.
 void small(String att, String val)
          Start an small element with the specified attribute and value.
 void small(String att1, String val1, String att2, String val2)
          Start an small element with the specified attributes and values.
 void small(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an small element with the specified attributes and values.
 void small(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an small element with the specified attributes and values.
 void span()
          Start an span element with no attributes.
 void span(Attributes atts)
          Start an span element with the specified attributes.
 void span(String att, String val)
          Start an span element with the specified attribute and value.
 void span(String att1, String val1, String att2, String val2)
          Start an span element with the specified attributes and values.
 void span(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an span element with the specified attributes and values.
 void span(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an span element with the specified attributes and values.
 void strike()
          Start an strike element with no attributes.
 void strike(Attributes atts)
          Start an strike element with the specified attributes.
 void strike(String att, String val)
          Start an strike element with the specified attribute and value.
 void strike(String att1, String val1, String att2, String val2)
          Start an strike element with the specified attributes and values.
 void strike(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an strike element with the specified attributes and values.
 void strike(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an strike element with the specified attributes and values.
 void strong()
          Start an strong element with no attributes.
 void strong(Attributes atts)
          Start an strong element with the specified attributes.
 void strong(String att, String val)
          Start an strong element with the specified attribute and value.
 void strong(String att1, String val1, String att2, String val2)
          Start an strong element with the specified attributes and values.
 void strong(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an strong element with the specified attributes and values.
 void strong(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an strong element with the specified attributes and values.
 void style()
          Start an style element with no attributes.
 void style(Attributes atts)
          Start an style element with the specified attributes.
 void style(String att, String val)
          Start an style element with the specified attribute and value.
 void style(String att1, String val1, String att2, String val2)
          Start an style element with the specified attributes and values.
 void style(String att1, String val1, String att2, String val2, String att3, String val3)
          Start an style element with the specified attributes and values.
 void style(String att1, String val1, String att2, String val2, String att3, String val3, String att4, String val4)
          Start an style element with the specified attributes and values.
 void sub()
          Start an sub element with no attributes.
 void sub(Attributes atts)
          Start an sub element with the specified attributes.
 void sub(String att, String val)
          Start an sub element with the specified attribute and value.