blob: 98050aa9da2c6d5ccd904628804b2aa60dd48373 [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.interpreter;
import org.eclipse.dltk.core.PreferencesLookupDelegate;
import org.eclipse.dltk.debug.ui.launchConfigurations.MainLaunchConfigurationTab;
import org.eclipse.dltk.sh.core.ShelledNature;
public class ShellMainLaunchConfigurationTab extends MainLaunchConfigurationTab {
public ShellMainLaunchConfigurationTab(String mode) {
super(mode);
}
@Override
protected boolean breakOnFirstLinePrefEnabled(PreferencesLookupDelegate delegate) {
return false;
}
@Override
protected boolean dbpgLoggingPrefEnabled(PreferencesLookupDelegate delegate) {
return false;
}
@Override
public String getNatureID() {
return ShelledNature.SHELLED_NATURE;
}
}