blob: 7b6c191a473f806d754975c96446ff5ef96a86e5 [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 class DestinationConfiguratorSelection {
public final String destProviderId;
public final ISearchDestination destination;
public DestinationConfiguratorSelection(String destProviderId, ISearchDestination destination) {
super();
this.destProviderId = destProviderId;
this.destination = destination;
}
}