Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which listener can know that the JTextPane value is changed?

I would like to know when JTextPane content is changed. I implemented a keyboard listener, but it is only detecting keyboard events. If the user pastes text via mouse or drag the text inside, then I am not enable to detect the JTextPane value is changed. Which event listener can tell me that the JTextPane value is changed?

like image 910
DNB5brims Avatar asked Nov 11 '11 11:11

DNB5brims


1 Answers

you have to look for DocumentListener

like image 183
mKorbel Avatar answered Nov 13 '22 14:11

mKorbel