blob: a6459a3cb2b80bf956f287ca79fb066811965083 [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.internal.ui.templates;
import org.eclipse.dltk.ruby.internal.ui.RubyUI;
import org.eclipse.dltk.ui.templates.ScriptTemplateAccess;
import org.eclipse.jface.preference.IPreferenceStore;
/**
* Provides access to the Ruby template store.
*/
public class RubyTemplateAccess extends ScriptTemplateAccess {
// Template
private static final String CUSTOM_TEMPLATES_KEY = "org.eclipse.ruby.Templates"; //$NON-NLS-1$
private static RubyTemplateAccess instance;
public static synchronized RubyTemplateAccess getInstance() {
if (instance == null) {
instance = new RubyTemplateAccess();
}
return instance;
}
/*
* @see org.eclipse.dltk.ui.templates.ScriptTemplateAccess#getPreferenceStore()
*/
protected IPreferenceStore getPreferenceStore() {
return RubyUI.getDefault().getPreferenceStore();
}
/*
* @see org.eclipse.dltk.ui.templates.ScriptTemplateAccess#getContextTypeId()
*/
protected String getContextTypeId() {
return RubyUniversalTemplateContextType.CONTEXT_TYPE_ID;
}
/*
* @see org.eclipse.dltk.ui.templates.ScriptTemplateAccess#getCustomTemplatesKey()
*/
protected String getCustomTemplatesKey() {
return CUSTOM_TEMPLATES_KEY;
}
}