1 | IQueryTokenizerPreferenceBean _prefs = _prefsManager.getPreferences();↵ | | |
|
2 | removeMultiLineCommentCheckBox.setSelected(_prefs.isRemoveMultiLineComments());↵ | | 1 | _prefs.setQualifyTableNames(qualifyTableNamesCheckBox.isSelected(↵
|
3 | lineCommentTextField.setText(↵ | | 2 | ));↵
|
| | | 3 | _prefs.setDeleteRefAction(deleteReferentialActionCheckbox.isSelected());↵
|
4 | _prefs.getLineComment());↵ | | 4 | _prefs.set↵
|
5 | statementSeparatorTextField.setText(_prefs.getStatementSeparator());↵ | | |
|
6 | if (_showProcSep)↵ | | |
|
7 | {↵ | | |
|
8 | procedureSeparatorTextField.setText(↵ | | 5 | UpdateRefAction(updateReferentialActionCheckbox.isSelected());↵
|
| | | 6 | int action = deleteActionComboBox.getSelectedIndex();↵
|
9 | _prefs.getProcedureSeparator());↵ | | 7 | _prefs.set↵
|
10 | }↵ | | |
|
11 | useCustomQTCheck↵ | | 8 | DeleteAction(action);↵
|
12 | Box.setSelected(_prefs.isInstallCustomQueryTokenizer());↵ | | 9 | action = updateActionComboBox.getSelected↵
|
13 | updatePreferenceState↵ | | 10 | Index();↵
|
| | | 11 | _prefs.setUpdateAction(action);↵
|
14 | (); | | 12 | SQLScriptPreferencesManager.savePrefs();
|