i have following code.
JTextField jtfCol1 = new JTextField(5);
JTextField jtfCol2 = new JTextField(5);
---
---
jtfCol1 .setEnabled(false); jtfCol2 .setEnabled(false);
i need to perform copy and paste operations on these fields, But they are disabled. I tried with setEditable(false); also but it is not working.