public boolean isCellEditable()

in src/main/groovy/groovy/swing/MyTableModel.java [80:89]


    public boolean isCellEditable(int row, int col) {
        //Note that the data/cell address is constant,
        //no matter where the cell appears onscreen.
        if (col < 2) {
            return false;
        }
        else {
            return true;
        }
    }