I have created one Class
for auto complete text fields.
I want to use that Class
and try to include my JTable
cell fields, but it
you can to use AutoComplete JComboBox / JTextField
put this JComboBox / JTextField to the JTable as Renderer and Editor
(Assuming I understand the question)
You need to wrap your editor in TableCellEditor. Have a look at Using Other Editors an example.
Once you have it set up, you need to register the editor with the table.
One way is to register the editor with the column in question via the TableColumnModel
table.getColumnModel().getColumn(indexToColumnInQuestion).setCellEditor(tableCellAutoCompleteEditor);