use of com.cubrid.cubridquery.ui.spi.model.DatabaseUIWrapper in project cubrid-manager by CUBRID.
the class ImportExportConnectionDialog method setSelectAll.
@SuppressWarnings("unchecked")
private void setSelectAll(boolean selected) {
List<DatabaseUIWrapper> input = (List<DatabaseUIWrapper>) hostListView.getInput();
for (DatabaseUIWrapper check : input) {
if (check.isSeleted() != selected)
check.setSeleted(selected);
}
hostListView.setAllChecked(selected);
}
Aggregations