blob: 44424bf3d514d3978eb0512ac02d22ce57faff96 [file] [log] [blame]
/*
* Copyright (c) 2018 Ed Merks (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Ed Merks - initial API and implementation
*/
package org.eclipse.oomph.p2.internal.ui;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
/**
* @author Ed Merks
*/
public class SearchRepositoriesHandler extends AbstractHandler
{
public Object execute(ExecutionEvent event) throws ExecutionException
{
RepositoryExplorer.getSearchEclipseRepositoriesDialog();
return null;
}
}