blob: 4bf8953276b3bdac1282dff803dec4a18b9bbeab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.rdt.ui.wizards;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.ptp.services.core.IServiceProvider;
import org.eclipse.ptp.services.ui.IServiceProviderConfiguration;
import org.eclipse.swt.widgets.Shell;
/**
* Provides configuration UI for the RemoteCIndexServiceProvider by allowing an RSE
* host to be selected.
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will work or
* that it will remain the same. Please do not use this API without consulting
* with the RDT team.
*
* @author crecoskie
* @deprecated
*/
public class RemoteCIndexServiceProviderConfigurer implements IServiceProviderConfiguration {
public void configureServiceProvider(IServiceProvider provider, Shell parentShell) {
Dialog configDialog = new HostSelectionDialog(provider, parentShell);
configDialog.open();
}
}