public class ParserDelegator extends javax.swing.text.html.HTMLEditorKit.Parser implements java.io.Serializable
| Constructor and Description |
|---|
ParserDelegator() |
| Modifier and Type | Method and Description |
|---|---|
protected static DTD |
createDTD(DTD a_dtd,
java.lang.String name)
Registers the user - written DTD under the given name, also
making it default for the subsequent parsings.
|
void |
parse(java.io.Reader reader,
javax.swing.text.html.HTMLEditorKit.ParserCallback a_callback,
boolean ignoreCharSet)
Parses the HTML document, calling methods of the provided
callback.
|
protected static void |
setDefaultDTD()
Calling this method instructs that, if not specified directly,
the documents will be parsed using the default
DTD of the implementation.
|
public ParserDelegator()
public void parse(java.io.Reader reader, javax.swing.text.html.HTMLEditorKit.ParserCallback a_callback, boolean ignoreCharSet) throws java.io.IOException
parse in class javax.swing.text.html.HTMLEditorKit.Parserreader - The reader to read the HTML document froma_callback - The callback that is notifyed about the presence
of HTML elements in the document.ignoreCharSet - If thrue, any charset changes during parsing
are ignored.java.io.IOExceptionprotected static void setDefaultDTD()
protected static DTD createDTD(DTD a_dtd, java.lang.String name)
Parser
instead.a_dtd - The DTD that will be used to parse documents by this class.name - The name of this DTD.