{
supportedMechanismsTableViewer.setAllChecked( false );
setEditorDirty();
}
} );
supportedMechanismsTableViewer.addCheckStateListener( new ICheckStateListener()
{
public void checkStateChanged( CheckStateChangedEvent event )
{
setEditorDirty();
}
} );
// SASL Host
saslHostText.addModifyListener( modifyListener );
// SASL Principal
saslPrincipalText.addModifyListener( modifyListener );
// Search Base DN
searchBaseDnText.addModifyListener( modifyListener );
// SASL Quality Of Protection
selectAllQualityOfProtectionButton.addSelectionListener( new SelectionAdapter()
{
public void widgetSelected( SelectionEvent e )
{
saslQualityOfProtectionTableViewer.setAllChecked( true );
setEditorDirty();
}
} );
deselectAllQualityOfProtectionButton.addSelectionListener( new SelectionAdapter()
{
public void widgetSelected( SelectionEvent e )
{
saslQualityOfProtectionTableViewer.setAllChecked( false );
setEditorDirty();
}
} );
saslQualityOfProtectionTableViewer.addCheckStateListener( new ICheckStateListener()
{
public void checkStateChanged( CheckStateChangedEvent event )
{
setEditorDirty();
}