blob: 8853523e37a5735ae9491c2759c3ad74c20652d8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 SAP AG 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:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.platform.discovery.destprefs.internal.prefpage.ui;
import org.eclipse.platform.discovery.runtime.api.ISearchDestination;
public interface IDestinationConfiguratorsPresenter {
public void selectionChanged(final DestinationConfiguratorSelection selection);
public void addDestination();
public <T extends ISearchDestination> void editDestination();
public <T extends ISearchDestination> void removeDestination();
public <T extends ISearchDestination> void testDestination();
public void setView(final IDestinationConfiguratorsView view);
}