Tagged Questions
0
votes
1answer
74 views
java how to delete the contents of JTextPane as user types?
I want to delete the contents of my JTextPane as the user types, I mean
JTextPane.addKeyListener(new java.awt.event.KeyAdapter()
{
public void keyTyped(java.awt.event.KeyEvent evt)
{
...
3
votes
1answer
66 views
How to insert text into a Document without triggering insertUpdate()
I want to create a Swing JTextPane that takes action when the user types text into it. But I also want to be able to alter the text in that pane without it treating that alteration as a user typing. ...
0
votes
1answer
29 views
DocumentFilter wont detect and handle a paste/insert from a webpage (html)
Has anyone found a way to allow for a DocumentFilter to detect pastes from web browsers into a JTExtPane?
I've noticed that it will catch pastes of text or text from a console into a JTextPane, but ...
0
votes
1answer
78 views
Return a value from a document listener
I have 2 java classes. Once adds a document listener to a doc(HTMLDoc). The other is a class that implements DocumentListener.
I want to be able to return a value to this class so I know when the ...
1
vote
2answers
488 views
DocumentListener slows down Document.setCharacterAttributes method?
this is my first question in this site, though is not the first time I enter to clear my doubts, awesome webpage. :)
I'm writing a java program that highlights code in a JTextPane and I'm changing ...
