How To Disable Copying in JTable

Hi,I have a JTable, and when i select a row and then press CTRL-C(copy) i actually copy the entire row and then i can paste in notepad.I want to disable this feature.How do i do this?Thanks Prabhat
[239 byte] By [mprabhat.jhaa] at [2007-11-27 1:36:42]
# 1

Remove the copy action from the table like this:

table.getActionMap().put("copy", new AbstractAction() {

public void actionPerformed(ActionEvent e) {

}

});

Rodney_McKaya at 2007-7-12 0:46:26 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thanks it worked.Can you guide me where i should look for this kind of information.Thanks Prabhat
mprabhat.jhaa at 2007-7-12 0:46:26 > top of Java-index,Desktop,Core GUI APIs...