mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-20 22:55:51 +02:00
[216252] removing ISystemMessageProvider
This commit is contained in:
parent
f760530d3a
commit
b08ef16c69
4 changed files with 3 additions and 21 deletions
|
@ -1,15 +0,0 @@
|
||||||
/*******************************************************************************
|
|
||||||
* Copyright (c) 2005, 2006 IBM Corporation and others.
|
|
||||||
* All rights reserved. This program and the accompanying materials
|
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
* which accompanies this distribution, and is available at
|
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
*
|
|
||||||
* Contributors:
|
|
||||||
* IBM Corporation - initial API and implementation
|
|
||||||
*******************************************************************************/
|
|
||||||
package org.eclipse.rse.services.clientserver.messages;
|
|
||||||
|
|
||||||
public interface ISystemMessageProvider {
|
|
||||||
public SystemMessage getMessage(String id);
|
|
||||||
}
|
|
|
@ -47,7 +47,6 @@ import org.eclipse.rse.subsystems.files.core.servicesubsystem.FileServiceSubSyst
|
||||||
import org.eclipse.rse.subsystems.files.core.servicesubsystem.FileServiceSubSystemConfiguration;
|
import org.eclipse.rse.subsystems.files.core.servicesubsystem.FileServiceSubSystemConfiguration;
|
||||||
import org.eclipse.rse.subsystems.files.core.subsystems.IHostFileToRemoteFileAdapter;
|
import org.eclipse.rse.subsystems.files.core.subsystems.IHostFileToRemoteFileAdapter;
|
||||||
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFileSubSystem;
|
import org.eclipse.rse.subsystems.files.core.subsystems.IRemoteFileSubSystem;
|
||||||
import org.eclipse.rse.ui.RSEUIPlugin;
|
|
||||||
import org.eclipse.rse.ui.SystemBasePlugin;
|
import org.eclipse.rse.ui.SystemBasePlugin;
|
||||||
|
|
||||||
|
|
||||||
|
@ -225,7 +224,7 @@ public class LocalFileSubSystemConfiguration extends FileServiceSubSystemConfigu
|
||||||
|
|
||||||
public IFileService createFileService(IHost host)
|
public IFileService createFileService(IHost host)
|
||||||
{
|
{
|
||||||
return new LocalFileService(RemoteFileUtility.getSystemFileTransferModeRegistry(), RSEUIPlugin.getDefault());
|
return new LocalFileService(RemoteFileUtility.getSystemFileTransferModeRegistry());
|
||||||
}
|
}
|
||||||
|
|
||||||
public ISearchService createSearchService(IHost host)
|
public ISearchService createSearchService(IHost host)
|
||||||
|
|
|
@ -30,7 +30,6 @@ import org.eclipse.rse.services.processes.IProcessService;
|
||||||
import org.eclipse.rse.subsystems.processes.core.subsystem.IHostProcessToRemoteProcessAdapter;
|
import org.eclipse.rse.subsystems.processes.core.subsystem.IHostProcessToRemoteProcessAdapter;
|
||||||
import org.eclipse.rse.subsystems.processes.servicesubsystem.ProcessServiceSubSystem;
|
import org.eclipse.rse.subsystems.processes.servicesubsystem.ProcessServiceSubSystem;
|
||||||
import org.eclipse.rse.subsystems.processes.servicesubsystem.ProcessServiceSubSystemConfiguration;
|
import org.eclipse.rse.subsystems.processes.servicesubsystem.ProcessServiceSubSystemConfiguration;
|
||||||
import org.eclipse.rse.ui.RSEUIPlugin;
|
|
||||||
|
|
||||||
|
|
||||||
public class LocalProcessSubSystemConfiguration extends ProcessServiceSubSystemConfiguration
|
public class LocalProcessSubSystemConfiguration extends ProcessServiceSubSystemConfiguration
|
||||||
|
@ -110,7 +109,7 @@ public class LocalProcessSubSystemConfiguration extends ProcessServiceSubSystemC
|
||||||
public IProcessService createProcessService(IHost host)
|
public IProcessService createProcessService(IHost host)
|
||||||
{
|
{
|
||||||
//LocalConnectorService connectorService = (LocalConnectorService)getConnectorService(host);
|
//LocalConnectorService connectorService = (LocalConnectorService)getConnectorService(host);
|
||||||
return new LocalProcessService(RSEUIPlugin.getDefault());
|
return new LocalProcessService();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
|
|
|
@ -67,7 +67,6 @@ import org.eclipse.rse.internal.ui.view.SubSystemConfigurationAdapterFactory;
|
||||||
import org.eclipse.rse.internal.ui.view.SystemViewAdapterFactory;
|
import org.eclipse.rse.internal.ui.view.SystemViewAdapterFactory;
|
||||||
import org.eclipse.rse.internal.ui.view.team.SystemTeamViewResourceAdapterFactory;
|
import org.eclipse.rse.internal.ui.view.team.SystemTeamViewResourceAdapterFactory;
|
||||||
import org.eclipse.rse.persistence.IRSEPersistenceManager;
|
import org.eclipse.rse.persistence.IRSEPersistenceManager;
|
||||||
import org.eclipse.rse.services.clientserver.messages.ISystemMessageProvider;
|
|
||||||
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
|
||||||
import org.eclipse.rse.services.clientserver.messages.SystemMessageFile;
|
import org.eclipse.rse.services.clientserver.messages.SystemMessageFile;
|
||||||
import org.eclipse.rse.ui.internal.model.SystemRegistryUI;
|
import org.eclipse.rse.ui.internal.model.SystemRegistryUI;
|
||||||
|
@ -78,7 +77,7 @@ import org.osgi.framework.BundleContext;
|
||||||
/**
|
/**
|
||||||
* Plugin for the core remote systems support.
|
* Plugin for the core remote systems support.
|
||||||
*/
|
*/
|
||||||
public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvider
|
public class RSEUIPlugin extends SystemBasePlugin
|
||||||
{
|
{
|
||||||
public class InitRSEJob extends Job {
|
public class InitRSEJob extends Job {
|
||||||
public InitRSEJob() {
|
public InitRSEJob() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue