The javax.swing.text tag has no wiki summary.
2
votes
1answer
73 views
How to create a custom Swing Document structure
I have a JEditorPane holding a custom EditorKit and a custom Document (derived from DefaultStyledDocument).
The following is an example for the content of the JEditorPane:
first paragraph
second ...
1
vote
1answer
149 views
How to implement in JEditorPane on text changed
How to implement in JEditorPane on text changed method ( get text on every character added or deleted ) ?
0
votes
2answers
81 views
How to read last word or last line in DocumenListener
I implement DocumentListener for JEditorPane ( need help with method insertUpdate(DocumentEvent e) ). How to read last word or last line (lines are separated by '\n' and words are separated by ' ' ) ? ...
0
votes
3answers
58 views
What is best control in Java for simple editor
I need to implement light editor ( recognize part of key words, syntax highlight and suggest all of word in dropdown list if user type part with same prefix). What is best control in Java for this ...
0
votes
1answer
781 views
How do I add the javax.swing.* packages to my libs for my android project?
First of all I'd like to mention I am very new to Java programming. This Android project is my first experience with Java. So for one task I need to strip HTML tags from a string. I was thinking ...
0
votes
2answers
126 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
88 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,
...