9cff545d9ad80433d43df0c5cc019b0274aa60d7
[phpeclipse.git] / net.sourceforge.phpeclipse.smarty.ui / src / net / sourceforge / phpdt / smarty / ui / internal / text / HTMLCompletionProcessor.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.smarty.ui.internal.text;
12
13 import net.sourceforge.phpeclipse.ui.WebUI;
14 import net.sourceforge.phpeclipse.ui.templates.template.BasicCompletionProcessor;
15 import net.sourceforge.phpeclipse.ui.templates.template.HTMLContextType;
16
17 import org.eclipse.jface.text.IRegion;
18 import org.eclipse.jface.text.ITextViewer;
19 import org.eclipse.jface.text.templates.TemplateContextType;
20
21
22 /**
23  * A completion processor for XML templates.
24  */
25 public class HTMLCompletionProcessor extends BasicCompletionProcessor {
26         
27         /**
28          * Return the XML context type that is supported by this plugin. 
29          */
30         protected TemplateContextType getContextType(ITextViewer viewer, IRegion region) {
31                 return WebUI.getDefault().getContextTypeRegistry().getContextType(HTMLContextType.HTML_CONTEXT_TYPE);
32         }
33
34         
35 }