summaryrefslogtreecommitdiff
path: root/l10ntools/java/receditor/java/transex3/view/SdfTable.java
blob: f0cc7bd84a3486fa09993c52e6bf04348e6c1d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package transex3.view;

import javax.swing.JTable;

class SdfTable extends JTable{
    //private String tableId;
    public SdfTable( Object[][] obj1 , Object[] obj2){
        super(obj1,obj2);
    }
    //@Override
    public boolean isCellEditable(int row, int col) {
        if( row == 0 && col == 0 || row == 0 && col == 1 || row == 0 && col == 2 || row == 0 && col == 3 || row == 0 && col == 4 )
            return false;
        else
            return true;
    }
    /*public String getTableId() {
        return tableId;
    }
    public void setTableId(String tableId) {
        this.tableId = tableId;
    }*/

}