blob: a0fff7f217f380a6c4ebc1f8d86bd8d71f78a412 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.json.ui.internal.templates;
import org.eclipse.jface.text.templates.GlobalTemplateVariables;
import org.eclipse.jface.text.templates.TemplateContextType;
/**
* Base class for JSON template context types. Templates of this context type
* apply to any place within JSON content type.
*/
public class TemplateContextTypeJSON extends TemplateContextType {
public TemplateContextTypeJSON() {
super();
addResolver(new GlobalTemplateVariables.Cursor());
addResolver(new GlobalTemplateVariables.Date());
addResolver(new GlobalTemplateVariables.Dollar());
addResolver(new GlobalTemplateVariables.LineSelection());
addResolver(new GlobalTemplateVariables.Time());
addResolver(new GlobalTemplateVariables.User());
addResolver(new GlobalTemplateVariables.WordSelection());
addResolver(new GlobalTemplateVariables.Year());
addResolver(new EncodingTemplateVariableResolverJSON());
}
}