Generated by
JDiff

Class javax.swing.text.html.HTMLWriter

Documentation changed from old to new.

Changed Constructors
HTMLWriter(Writer, HTMLDocument) Documentation changed from old to new.
Creates a new HTMLWriter.
HTMLWriter(Writer, HTMLDocument, int, int) Documentation changed from old to new.
Creates a new HTMLWriter.
 

Removed Methods
void write(char) Conveneice method for write(char false).
void write(String) Convenience method for write(String false).
 

Added Methods
void output(char[], int, int) This method is overriden to map any character entities such as < to &lt;.
void writeLineSeparator() Writes the line separator.
 

Changed Methods
void closeOutUnwantedEmbeddedTags(AttributeSet) Documentation changed from old to new.
Searches the attribute set and for each tag that is stored in the tag vector.
void comment(Element) Documentation changed from old to new.
Writes out comments.
void decrIndent() Method was locally defined, but is now inherited from AbstractWriter. Decrements the indent level.
void emptyTag(Element) Documentation changed from old to new.
Writes out all empty elements (all tags that have no corresponding end tag).
void endTag(Element) Documentation changed from old to new.
Writes out an end tag for the element.
void incrIndent() Documentation changed from old to new.
Method was locally defined, but is now inherited from AbstractWriter.
Increments the indent level.
void indent() Documentation changed from old to new.
Method was locally defined, but is now inherited from AbstractWriter.
Does indentation.
boolean isBlockTag(AttributeSet) Documentation changed from old to new.
Determines if the HTML.Tag associated with the element is a block tag.
boolean matchNameAttribute(AttributeSet, Tag) Documentation changed from old to new.
Returns true if the StyleConstants.NameAttribute is equal to the tag that is passed in as a parameter.
void selectContent(AttributeSet) Documentation changed from old to new.
Writes out the content of the SELECT form element.
void setIndentSpace(int) Method was locally defined, but is now inherited from AbstractWriter. Enables subclasses to specify how many spaces an indent maps to.
void setLineLength(int) Method was locally defined, but is now inherited from AbstractWriter. Enables subclasses to set the number of characters they want written per line.
void startTag(Element) Documentation changed from old to new.
Writes out a start tag for the element.
boolean synthesizedElement(Element) Documentation changed from old to new.
Returns true if the element is a synthesized element.
void text(Element) Documentation changed from old to new.
Writes out text.
void textAreaContent(AttributeSet) Documentation changed from old to new.
Writes out text that is contained in a TEXTAREA form element.
void writeAttributes(AttributeSet) Documentation changed from old to new.
Writes out the attribute set.
void writeEmbeddedTags(AttributeSet) Documentation changed from old to new.
Searches for embedded tags in the AttributeSet and writes them out.
void writeOption(Option) Documentation changed from old to new.
Writes out the content of the Option form element.
void write() Documentation changed from old to new.
Iterates over the Element tree and controls the writing out of all the tags and its attributes.