Hi,
override the method isCellEditable(int row,int column) in ur table class.
The code looks something similar to this.
JTable table = new JTable(5,5) {
public boolean isCellEditable(int row,int column) {
if(row ==2 && and column ==3) // specify this depending upon ur requirement. Here the cell 2,3 is not editable.
return false;
else
return true;
}
};
Hope this works out for you..
Regards,
J M Reddy