Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
119 views

DefaultStyledDocument.styleChanged(Style style) may not run in a timely manner?

I'm experiencing an intermittent problem with a class that extends javax.swing.text.DefaultStyledDocument. This document is being sent to a printer. Most of the time the formatting of the document ...
0
votes
1answer
85 views

Insert one DefaultStyledDocument into another DefaultStyledDocument

I want to insert one DefaultStyledDocument into another DefaultStyledDocument. How do I do this? I know of this method: AbstractDocument.insertString(int offs, String str, ...
0
votes
1answer
126 views

Setting font color on DefaultStyledDocument

I know that I can set the font size on a javax.swing.text.DefaultStyledDocument like this: public void apply(DefaultStyledDocument document) { final MutableAttributeSet attributeSet = new ...