blob: 21552a8e3f36c141ee9a7ac69c0635ed9ac7f6ce [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Red Hat Inc. 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:
* 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;
}
}