blob: 23942982d9d2db23894c3cfe1d08ebc382f61f87 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 vogella GmbH and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* - Simon Scholz <simon.scholz@vogella.com> - initial implementation
*******************************************************************************/
package org.eclipse.ui.genericeditor.examples.dotproject.hyperlink;
import java.util.Collections;
import org.eclipse.core.commands.Command;
import org.eclipse.core.commands.ParameterizedCommand;
import org.eclipse.e4.core.commands.ECommandService;
import org.eclipse.e4.core.commands.EHandlerService;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.hyperlink.IHyperlink;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.ide.handlers.ShowInSystemExplorerHandler;
@SuppressWarnings("restriction")
public class ShowInSystemExplorerHyperlink implements IHyperlink {
private String fileLocation;
private IRegion region;
public ShowInSystemExplorerHyperlink(String fileLocation, IRegion region) {
this.fileLocation = fileLocation;
this.region = region;
}
@Override
public IRegion getHyperlinkRegion() {
return region;
}
@Override
public String getTypeLabel() {
return null;
}
@Override
public String getHyperlinkText() {
return "Show in System Explorer";
}
@Override
public void open() {
ECommandService commandService = PlatformUI.getWorkbench().getService(ECommandService.class);
EHandlerService handlerService = PlatformUI.getWorkbench().getService(EHandlerService.class);
Command command = commandService.getCommand(ShowInSystemExplorerHandler.ID);
if (command.isDefined()) {
ParameterizedCommand parameterizedCommand = commandService.createCommand(ShowInSystemExplorerHandler.ID,
Collections.singletonMap(ShowInSystemExplorerHandler.RESOURCE_PATH_PARAMETER, fileLocation));
if (handlerService.canExecute(parameterizedCommand)) {
handlerService.executeHandler(parameterizedCommand);
}
}
}
}