Name: akC57697 Date: 12/24/98
This bug was found by St.Petersburg Java SQE team (by Sergey Scherbakov).
The javadoc-generated javax/swing/text/html/MinimalHTMLWriter.html
is broken. Only constructors are present in the browser view.
The next are missing:
protected void endFontTag() throws java.io.IOException;
protected boolean inFontTag();
protected boolean isText(javax.swing.text.Element);
protected void startFontTag(java.lang.String) throws java.io.IOException;
protected void text(javax.swing.text.Element) throws java.io.IOException, javax.swing.text.BadLocationException;
public void write() throws java.io.IOException, javax.swing.text.BadLocationException;
protected void writeAttributes(javax.swing.text.AttributeSet) throws java.io.IOException;
protected void writeBody() throws java.io.IOException, javax.swing.text.BadLocationException;
protected void writeComponent(javax.swing.text.Element) throws java.io.IOException;
protected void writeContent(javax.swing.text.Element, boolean) throws java.io.IOException, javax.swing.text.BadLocationException;
protected void writeEndParagraph() throws java.io.IOException;
protected void writeEndTag(java.lang.String) throws java.io.IOException;
protected void writeHTMLTags(javax.swing.text.AttributeSet) throws java.io.IOException;
protected void writeHeader() throws java.io.IOException;
protected void writeImage(javax.swing.text.Element) throws java.io.IOException;
protected void writeLeaf(javax.swing.text.Element) throws java.io.IOException;
protected void writeNonHTMLAttributes(javax.swing.text.AttributeSet) throws java.io.IOException;
protected void writeStartParagraph(javax.swing.text.Element) throws java.io.IOException;
protected void writeStartTag(java.lang.String) throws java.io.IOException;
protected void writeStyles() throws java.io.IOException;
-------------------------------------------------------------------
javax.swing.text.html
Class MinimalHTMLWriter
java.lang.Object
|
+--javax.swing.text.AbstractWriter
|
+--javax.swing.text.html.MinimalHTMLWriter
public class MinimalHTMLWriter
extends AbstractWriter
MinimalHTMLWriter is a fallback writer used by the HTMLEditorKit to write out HTML for a document that is a not
produced by the EditorKit. The format for the document is:
bold, italic and underline attributes of the run are emitted as html tags. The remaining attributes
are emitted as part style attribute of a tag. The syntax is similar to inline styles.
Fields inherited from class javax.swing.text.AbstractWriter
NEWLINE
Constructor Summary
MinimalHTMLWriter(Writer w, StyledDocument doc) <-- broken link
Creates a new MinimalHTMLWriter.
MinimalHTMLWriter(Writer w, StyledDocument doc, int pos, <-- broken link
int len)
Creates a new MinimalHTMLWriter.
-------------------------------------------------------------------
======================================================================