for(int i = 0 ; i < AttributePanel.this.tableModel.getRowCount() ; i++) {
AttributeShower shower = (AttributeShower)AttributePanel.this.tableModel.getValueAt(i, 0);
if(check) {
shower.show();
} else {
shower.unshow();
}
}
if(SwingUtilities.isEventDispatchThread()) {
table.editingStopped(null);
view.updateUI();