TDAT: public void saveColumnSettings() { | |
int columnCount = getTable().getColumnCount(); | |
for (int i = 0; i < columnCount; i++) { | |
getDialogSettings() | |
.put( | |
getQualifier() + ".columnWidth" + i, getTable().getColumn(i).getWidth()); //$NON-NLS-1$ | |
} | |
getDialogSettings().put(getQualifier() + ".sortColumn", fSortColumn); //$NON-NLS-1$ | |
} | |
COM: <s> persist table settings into the give dialog store prefixed with the </s> | |