blob: 698d740a896e7fdd2b098a26fc7cf0c9a3536b3d [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.ui.text.ScriptTextTools;
import org.eclipse.dltk.ui.text.completion.ContentAssistPreference;
public class ShellContentAssistPreference extends ContentAssistPreference {
private static ShellContentAssistPreference instance;
public static ContentAssistPreference getDefault() {
if (instance == null) {
instance = new ShellContentAssistPreference();
}
return instance;
}
@Override
protected ScriptTextTools getTextTools() {
return Activator.getDefault().getTextTools();
}
}