The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

How to change Swing Document elements structure separator?

I want to build a new model for my CustomDocument which extends a DefaultStyledDocument. Now the document builds the Elements structure by separating text at "\n" character as default. I want to ...
0
votes
1answer
42 views

Inserting a LeafElement myself

I am trying to insert a LeafElement inside an overriden DefaultStyledDocument (also providing a custom EditorKit) for a JEditorPane : but I get a javax.swing.text.StateInvariantError. So following the ...
1
vote
1answer
39 views

How can I know the number of inserted characters by Document.insertString() method?

I am making my custom implementation of DefaultStyledDocument. And sometimes, I need to know how many characters will be (or has been) inserted by the Document.insertString() method. But I did not ...
0
votes
1answer
221 views

How can I copy/paste styled text from/to clipboard?

I have I JTextPane and I'm using DefaultStyledDocument as a text model. I currenly use the JTextPane's default copy() and paste() methods for copying and pasting, but as you know they copy/paste plain ...
3
votes
1answer
208 views

JEditorPane - switching back to the default editor kit

If you change the editor kit of a JEditorPane to HTMLEditorKit, how do you change it back to the default (plain text) editor kit, like how it is when you first instantiate one? I want it to do this so ...
-2
votes
1answer
212 views

Custom tabs in jtextarea in java

How to set tab stops in jtextarea for different lengths, first tab should stop 4 Second tab should stop at 20 (If i give tab from 4 it should stop at 20) Third tab should stop at 30 (If i give tab ...
6
votes
2answers
163 views

Java GUI: Document Object Model

HTML has a Document Object Model, which Javascript can then manipulate / move around. When I create GUIs in Swing -- the model appears to be very difference (I don't know the name of the model), ...
0
votes
2answers
175 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
131 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
248 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 ...