use of org.talend.commons.ui.swt.formtools.LabelText in project tdi-studio-se by Talend.
the class ConnectionFormComposite method removeListeners.
private void removeListeners() {
repositoryCombo.removePostSelectionChangedListener(repositoryListener);
nameText.removeModifyListener(standardTextListener);
descriptionText.removeModifyListener(standardTextListener);
userText.removeModifyListener(standardTextListener);
passwordText.removeModifyListener(standardTextListener);
workSpaceText.removeModifyListener(standardTextListener);
for (IRepositoryFactory f : dynamicControls.keySet()) {
for (LabelText control : dynamicControls.get(f).values()) {
control.removeModifyListener(standardTextListener);
}
}
for (IRepositoryFactory f : dynamicChoices.keySet()) {
for (LabelledCombo control : dynamicChoices.get(f).values()) {
control.getCombo().removeModifyListener(standardTextListener);
}
}
deleteProjectsButton.removeSelectionListener(deleteProjectClickListener);
}
Aggregations