blob: 5278084ae79680a16e0cbac950cfc9f2912cae43 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.r.ui.rtools;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.common.NotDefinedException;
import org.eclipse.statet.r.core.RUtil;
import org.eclipse.statet.r.launching.AbstractRCommandHandler;
/**
* Command handler for help("...")
*/
public class RunHelpInR extends AbstractRCommandHandler {
public static final String COMMAND_ID= "org.eclipse.statet.r.commands.RunHelpInR"; //$NON-NLS-1$
private static final String PAR_TOPIC= "topic"; //$NON-NLS-1$
public static String createCommandString(final String topic) throws NotDefinedException {
return createCommandString(COMMAND_ID, new String[][] {{ PAR_TOPIC, topic }});
}
public RunHelpInR() {
super(Messages.HelpCommand_name);
}
@Override
public Object execute(final ExecutionEvent arg) throws ExecutionException {
String topic= arg.getParameter(PAR_TOPIC);
if (topic == null) {
topic= getRSelection();
if (topic == null) {
return null;
}
}
runCommand("help(\""+RUtil.escapeForDQuote(topic)+"\")", false); //$NON-NLS-1$ //$NON-NLS-2$
return null;
}
}