Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f54d65d3fe2748485114a89ed671e823e7c215b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2000, 2018 IBM Corporation and others.
 *
 * 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.jface.text.templates;

import java.util.Iterator;

/**
 * A registry for context types. Editor implementors will usually instantiate a
 * registry and configure the context types available in their editor.
 * <p>
 * In order to pick up templates contributed using the <code>org.eclipse.ui.editors.templates</code>
 * extension point, use a <code>ContributionContextTypeRegistry</code>.
 * </p>
 *
 * @since 3.0
 * @deprecated See {@link ContextTypeRegistry} from org.eclipse.text
 */
@Deprecated
public class ContextTypeRegistry extends org.eclipse.text.templates.ContextTypeRegistry {

	@Override
	public void addContextType(TemplateContextType contextType) {
		super.addContextType(contextType);
	}

	@Override
	public TemplateContextType getContextType(String id) {
		return super.getContextType(id);
	}

	@Override
	public Iterator<TemplateContextType> contextTypes() {
		return super.contextTypes();
	}
}

Back to the top