blob: 7b0729b24d8e48f0bb46aa9fb9f654b16163a348 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation 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
*
*******************************************************************************/
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;
}
@Override
protected IPreferenceStore getPreferenceStore() {
return RubyUI.getDefault().getPreferenceStore();
}
@Override
protected String getContextTypeId() {
return RubyUniversalTemplateContextType.CONTEXT_TYPE_ID;
}
@Override
protected String getCustomTemplatesKey() {
return CUSTOM_TEMPLATES_KEY;
}
}