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
}