mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
[cleanup] Remove "implements" use of ISystemMessages
This commit is contained in:
parent
ecc00ea243
commit
ee87343666
6 changed files with 9 additions and 18 deletions
|
@ -51,10 +51,10 @@ public class UniversalSecurityProperties extends NLS
|
||||||
public static String RESID_SECURITY_ADD_LBL;
|
public static String RESID_SECURITY_ADD_LBL;
|
||||||
public static String RESID_SECURITY_REMOVE_LBL;
|
public static String RESID_SECURITY_REMOVE_LBL;
|
||||||
public static String RESID_SECURITY_RENAME_LBL;
|
public static String RESID_SECURITY_RENAME_LBL;
|
||||||
public static String RESID_SECURITY_PREF_ALIAS_NAME;;
|
public static String RESID_SECURITY_PREF_ALIAS_NAME;
|
||||||
public static String RESID_SECURITY_PREF_ISSUED_TO;;
|
public static String RESID_SECURITY_PREF_ISSUED_TO;
|
||||||
public static String RESID_SECURITY_PREF_ISSUED_FROM;;
|
public static String RESID_SECURITY_PREF_ISSUED_FROM;
|
||||||
public static String RESID_SECURITY_PREF_EXPIRES;;
|
public static String RESID_SECURITY_PREF_EXPIRES;
|
||||||
|
|
||||||
public static String RESID_SECURITY_KEY_IO_ERROR_;
|
public static String RESID_SECURITY_KEY_IO_ERROR_;
|
||||||
public static String RESID_SECURITY_KEY_LOAD_ERROR_;
|
public static String RESID_SECURITY_KEY_LOAD_ERROR_;
|
||||||
|
@ -92,4 +92,4 @@ public class UniversalSecurityProperties extends NLS
|
||||||
initializeMessages(BUNDLE_NAME, UniversalSecurityProperties.class);
|
initializeMessages(BUNDLE_NAME, UniversalSecurityProperties.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
package org.eclipse.rse.dstore.security.preference;
|
package org.eclipse.rse.dstore.security.preference;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
import org.eclipse.jface.viewers.IContentProvider;
|
|
||||||
import org.eclipse.jface.viewers.IStructuredContentProvider;
|
import org.eclipse.jface.viewers.IStructuredContentProvider;
|
||||||
import org.eclipse.jface.viewers.Viewer;
|
import org.eclipse.jface.viewers.Viewer;
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ extends ViewerSorter
|
||||||
|
|
||||||
if(currentColumn >= 0)
|
if(currentColumn >= 0)
|
||||||
{
|
{
|
||||||
TableColumn currentTableColumn = (TableColumn)tableViewer.getTable().getColumn(currentColumn);
|
TableColumn currentTableColumn = tableViewer.getTable().getColumn(currentColumn);
|
||||||
if(addDirectionSymbol && (currentTableColumn != null))
|
if(addDirectionSymbol && (currentTableColumn != null))
|
||||||
{
|
{
|
||||||
text = currentTableColumn.getText();
|
text = currentTableColumn.getText();
|
||||||
|
|
|
@ -21,18 +21,15 @@ import java.security.cert.X509Certificate;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.eclipse.dstore.core.util.ssl.DStoreKeyStore;
|
import org.eclipse.dstore.core.util.ssl.DStoreKeyStore;
|
||||||
import org.eclipse.jface.wizard.WizardPage;
|
|
||||||
import org.eclipse.rse.core.SystemBasePlugin;
|
import org.eclipse.rse.core.SystemBasePlugin;
|
||||||
import org.eclipse.rse.core.comm.ISystemKeystoreProvider;
|
import org.eclipse.rse.core.comm.ISystemKeystoreProvider;
|
||||||
import org.eclipse.rse.dstore.security.ImageRegistry;
|
import org.eclipse.rse.dstore.security.ImageRegistry;
|
||||||
import org.eclipse.rse.dstore.security.UniversalSecurityProperties;
|
import org.eclipse.rse.dstore.security.UniversalSecurityProperties;
|
||||||
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
||||||
import org.eclipse.rse.ui.ISystemMessages;
|
|
||||||
import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
|
import org.eclipse.rse.ui.wizards.AbstractSystemWizard;
|
||||||
|
|
||||||
public class SystemImportCertWizard
|
public class SystemImportCertWizard
|
||||||
extends AbstractSystemWizard
|
extends AbstractSystemWizard
|
||||||
implements ISystemMessages
|
|
||||||
{
|
{
|
||||||
|
|
||||||
private SystemImportCertWizardMainPage _mainPage;
|
private SystemImportCertWizardMainPage _mainPage;
|
||||||
|
@ -60,10 +57,10 @@ public class SystemImportCertWizard
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
_mainPage = createMainPage();
|
_mainPage = createMainPage();
|
||||||
addPage((WizardPage)_mainPage);
|
addPage(_mainPage);
|
||||||
|
|
||||||
_aliasPage = createAliasPage();
|
_aliasPage = createAliasPage();
|
||||||
addPage((WizardPage)_aliasPage);
|
addPage(_aliasPage);
|
||||||
//super.addPages();
|
//super.addPages();
|
||||||
} catch (Exception exc)
|
} catch (Exception exc)
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,7 +27,6 @@ import org.eclipse.rse.dstore.security.UniversalSecurityPlugin;
|
||||||
import org.eclipse.rse.dstore.security.UniversalSecurityProperties;
|
import org.eclipse.rse.dstore.security.UniversalSecurityProperties;
|
||||||
import org.eclipse.rse.dstore.security.preference.X509CertificateElement;
|
import org.eclipse.rse.dstore.security.preference.X509CertificateElement;
|
||||||
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
||||||
import org.eclipse.rse.ui.ISystemMessages;
|
|
||||||
import org.eclipse.rse.ui.SystemWidgetHelpers;
|
import org.eclipse.rse.ui.SystemWidgetHelpers;
|
||||||
import org.eclipse.rse.ui.messages.ISystemMessageLine;
|
import org.eclipse.rse.ui.messages.ISystemMessageLine;
|
||||||
import org.eclipse.rse.ui.validators.ISystemValidator;
|
import org.eclipse.rse.ui.validators.ISystemValidator;
|
||||||
|
@ -44,7 +43,6 @@ import org.eclipse.swt.widgets.Text;
|
||||||
|
|
||||||
public class SystemImportCertWizardAliasPage
|
public class SystemImportCertWizardAliasPage
|
||||||
extends AbstractSystemWizardPage
|
extends AbstractSystemWizardPage
|
||||||
implements ISystemMessages
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@ import org.eclipse.rse.dstore.security.preference.X509CertificateElement;
|
||||||
import org.eclipse.rse.dstore.security.preference.X509CertificatePropertiesDialog;
|
import org.eclipse.rse.dstore.security.preference.X509CertificatePropertiesDialog;
|
||||||
import org.eclipse.rse.dstore.security.util.GridUtil;
|
import org.eclipse.rse.dstore.security.util.GridUtil;
|
||||||
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
||||||
import org.eclipse.rse.ui.ISystemMessages;
|
|
||||||
import org.eclipse.rse.ui.SystemWidgetHelpers;
|
import org.eclipse.rse.ui.SystemWidgetHelpers;
|
||||||
import org.eclipse.rse.ui.messages.ISystemMessageLine;
|
import org.eclipse.rse.ui.messages.ISystemMessageLine;
|
||||||
import org.eclipse.rse.ui.validators.ISystemValidator;
|
import org.eclipse.rse.ui.validators.ISystemValidator;
|
||||||
|
@ -50,10 +49,8 @@ import org.eclipse.swt.widgets.TableColumn;
|
||||||
|
|
||||||
public class SystemImportCertWizardMainPage
|
public class SystemImportCertWizardMainPage
|
||||||
extends AbstractSystemWizardPage
|
extends AbstractSystemWizardPage
|
||||||
implements ISystemMessages, Listener
|
implements Listener
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
protected SystemMessage errorMessage;
|
protected SystemMessage errorMessage;
|
||||||
protected ISystemValidator nameValidator;
|
protected ISystemValidator nameValidator;
|
||||||
protected ISystemMessageLine msgLine;
|
protected ISystemMessageLine msgLine;
|
||||||
|
|
Loading…
Add table
Reference in a new issue