{
boolean[] canEdit = new boolean [] {
false, true, false, false, false, false, false
};
public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
}
boolean[] canEdit = new boolean [] {
false, true, false, false, false, false, false
};
public boolean isCellEditable(int rowIndex, int columnIndex) {
return canEdit [columnIndex];
}
}
No comments:
Post a Comment