blob: f7a4747e93887f334ba07023a1f75304d0cfeb77 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation 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
*
*******************************************************************************/
package org.eclipse.dltk.ruby.core;
import org.eclipse.dltk.core.AbstractLanguageToolkit;
import org.eclipse.dltk.core.IDLTKLanguageToolkit;
public class RubyLanguageToolkit extends AbstractLanguageToolkit {
protected static RubyLanguageToolkit sToolkit = new RubyLanguageToolkit();
public RubyLanguageToolkit() {
}
public boolean languageSupportZIPBuildpath() {
return false;
}
public String getNatureId() {
return RubyNature.NATURE_ID;
}
public static IDLTKLanguageToolkit getDefault() {
return sToolkit;
}
public String getLanguageName() {
return "Ruby"; //$NON-NLS-1$
}
public String getLanguageContentType() {
return "org.eclipse.dltk.rubyContentType"; //$NON-NLS-1$
}
public String getPreferenceQualifier() {
return RubyPlugin.PLUGIN_ID;
}
}