Is it possible to get the root elements name, actionCommand, etc... in DocumentListener. I need to get the JTextField name to keep a track of which textfield was modified.

public void insertUpdate(DocumentEvent e) {
    //something like this
    e.getName() //helps to keep a track which textfield was modified
}
link|improve this question

76% accept rate
feedback

2 Answers

Reading the javadoc, the only interesting things you can get is the type of that event and the document that sourced the changed event. Maybe digging in the getDocument() method could help you.

link|improve this answer
2  
Yes, came across stackoverflow.com/questions/5774732/… – Akash Nov 29 '11 at 16:57
feedback

It's not possible. Document is just model. The same document can be set in multiple JTextComponents.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.