blob: cc29475262df55328fbf14e3922a36f529bd05a9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.ptp.remote.remotetools.ui;
import org.eclipse.ptp.remote.core.IRemoteServices;
import org.eclipse.ptp.remote.ui.IRemoteUIServicesDelegate;
import org.eclipse.ptp.remote.ui.IRemoteUIServicesFactory;
public class RemoteToolsUIServicesFactory implements IRemoteUIServicesFactory {
/* (non-Javadoc)
* @see org.eclipse.ptp.remote.ui.IRemoteUIServicesFactory#getServices(org.eclipse.ptp.remote.core.IRemoteServices)
*/
public IRemoteUIServicesDelegate getServices(IRemoteServices services) {
return RemoteToolsUIServices.getInstance(services);
}
}