Package | Description |
---|---|
com.hfg.html |
The HTML classes in this package can be used to construct HTML or XHTML in an object-oriented fashion.
|
com.hfg.xml |
Classes for XML handling.
|
com.hfg.xml.parser |
Contains SaxyParser - a basic XML parser alternative to Xerces.
|
Modifier and Type | Method and Description |
---|---|
HTMLDoc |
HTMLDoc.setDoctype(Doctype inValue) |
Constructor and Description |
---|
HTMLDoc(Doctype inDoctype) |
Modifier and Type | Field and Description |
---|---|
static Doctype |
Doctype.HTML_4_01_FRAMESET |
static Doctype |
Doctype.HTML_4_01_FRAMESET_NO_URL |
static Doctype |
Doctype.HTML_4_01_STRICT |
static Doctype |
Doctype.HTML_4_01_TRANSITIONAL |
static Doctype |
Doctype.HTML_4_01_TRANSITIONAL_NO_URL
A workaround for IE6
|
static Doctype |
Doctype.HTML_5 |
static Doctype |
Doctype.SVG_1_1 |
static Doctype |
Doctype.XHTML_1_0_FRAMESET |
static Doctype |
Doctype.XHTML_1_0_STRICT |
static Doctype |
Doctype.XHTML_1_0_TRANSITIONAL |
static Doctype |
Doctype.XHTML_1_0_TRANSITIONAL_NO_URL |
static Doctype |
Doctype.XHTML_1_1 |
Modifier and Type | Method and Description |
---|---|
Doctype |
XMLBasedDoc.getDoctype() |
Doctype |
Doctype.setMimeType(MimeType inValue) |
Doctype |
Doctype.setName(String inValue) |
Doctype |
Doctype.setPublicId(String inValue) |
Doctype |
Doctype.setSystemId(String inValue) |
static Doctype |
Doctype.valueOf(String inValue) |
Modifier and Type | Method and Description |
---|---|
int |
Doctype.compareTo(Doctype inObj2) |
XMLBasedDoc |
XMLBasedDoc.setDoctype(Doctype inValue) |
XMLDoc |
XMLDoc.setDoctype(Doctype inValue) |
Modifier and Type | Method and Description |
---|---|
Doctype |
SaxyParser.getDoctype()
After parsing, the Doctype (if one was set) can be retrieved here.
|
Doctype |
XMLTagReader.getDoctype() |
jataylor@hairyfatguy.com