blob: 71bb7302289adc7aad27c3da19f39ee20e69103b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Red Hat Inc. and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Alexander Kurtakov - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.sh.internal.ui;
import org.eclipse.dltk.launching.AbstractScriptLaunchConfigurationDelegate;
import org.eclipse.dltk.sh.core.ShelledNature;
public class LaunchConfigurationDelegate extends AbstractScriptLaunchConfigurationDelegate {
@Override
public String getLanguageId() {
return ShelledNature.SHELLED_NATURE;
}
}