blob: c571aa7384d763072c557a8fcbc5c27d1b5402b2 [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.core.IDLTKLanguageToolkit;
import org.eclipse.dltk.sh.core.ShellScriptLanguageToolkit;
import org.eclipse.dltk.sh.internal.ui.interpreter.ShellInterpreterPreferencePage;
import org.eclipse.dltk.ui.AbstractDLTKUILanguageToolkit;
import org.eclipse.jface.preference.IPreferenceStore;
public class ShelledUILanguageToolkit extends AbstractDLTKUILanguageToolkit {
@Override
public IDLTKLanguageToolkit getCoreToolkit() {
return ShellScriptLanguageToolkit.getDefault();
}
@Override
public IPreferenceStore getPreferenceStore() {
return Activator.getDefault().getPreferenceStore();
}
@Override
public String getInterpreterPreferencePage() {
return ShellInterpreterPreferencePage.PAGE_ID;
}
}