/*=============================================================================#
# Copyright (c) 2005-2016 Stephan Wahlbrink (WalWare.de) 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:
# Stephan Wahlbrink - initial API and implementation
#=============================================================================*/
package de.walware.statet.r.internal.debug.ui;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.commands.IHandlerListener;
import org.eclipse.core.runtime.CoreException;
import de.walware.statet.r.launching.RCodeLaunching;
public class GotoRConsole implements IHandler {
public GotoRConsole() {
}
@Override
public void dispose() {
}
@Override
public Object execute(final ExecutionEvent event) throws ExecutionException {
try {
RCodeLaunching.gotoRConsole();
}
catch (final CoreException e) {
throw new ExecutionException("Error occured when Goto R Console", e);
}
return null;
}
@Override
public boolean isEnabled() {
return true;
}
@Override
public boolean isHandled() {
return true;
}
@Override
public void addHandlerListener(final IHandlerListener handlerListener) {
}
@Override
public void removeHandlerListener(final IHandlerListener handlerListener) {
}
}