blob: f1f4c9a12a0981e8b7024a9ede0bb5e7a732d923 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2013 Innoopract Informationssysteme GmbH.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.rap.tools.launch.internal;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.pde.ui.launcher.OSGiLaunchShortcut;
import org.eclipse.ui.IEditorPart;
public final class RAPLaunchShortcut extends OSGiLaunchShortcut {
private static final String LAUNCH_CONFIGURATION_TYPE
= "org.eclipse.rap.ui.launch.RAPLauncher"; //$NON-NLS-1$
public void launch( ISelection selection, String mode ) {
launch( mode );
}
public void launch( IEditorPart editor, String mode ) {
launch( mode );
}
protected String getLaunchConfigurationTypeName() {
return LAUNCH_CONFIGURATION_TYPE;
}
protected boolean isGoodMatch( ILaunchConfiguration config ) {
return true;
}
}