blob: 3aa3d91eedcdd870e1f4710fc14a1f7192cc63f2 [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.completion;
import org.eclipse.dltk.sh.core.ShelledNature;
import org.eclipse.dltk.ui.text.completion.ScriptCompletionProcessor;
import org.eclipse.jface.text.contentassist.ContentAssistant;
import org.eclipse.ui.IEditorPart;
public class ShellCompletionProcessor extends ScriptCompletionProcessor {
public ShellCompletionProcessor(IEditorPart editor, ContentAssistant assistant, String partition) {
super(editor, assistant, partition);
}
@Override
protected String getNatureId() {
return ShelledNature.SHELLED_NATURE;
}
}