import java.io.IOException;
import java.net.URL;
-import net.sourceforge.phpeclipse.ui.templates.template.HTMLContextType;
-import net.sourceforge.phpeclipse.ui.templates.template.JSContextType;
-import net.sourceforge.phpeclipse.ui.templates.template.SmartyContextType;
-import net.sourceforge.phpeclipse.ui.templates.template.XMLContextType;
+import net.sourceforge.phpeclipse.ui.templates.template.HTMLTemplateContextType;
+import net.sourceforge.phpeclipse.ui.templates.template.JSTemplateContextType;
+import net.sourceforge.phpeclipse.ui.templates.template.SmartyTemplateContextType;
+import net.sourceforge.phpeclipse.ui.templates.template.XMLTemplateContextType;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
if (fRegistry == null) {
// create an configure the contexts available in the editor
fRegistry = new ContributionContextTypeRegistry();
- fRegistry.addContextType(XMLContextType.XML_CONTEXT_TYPE);
- fRegistry.addContextType(HTMLContextType.HTML_CONTEXT_TYPE);
- fRegistry.addContextType(SmartyContextType.SMARTY_CONTEXT_TYPE);
- fRegistry.addContextType(JSContextType.JS_CONTEXT_TYPE);
+ fRegistry.addContextType(XMLTemplateContextType.XML_CONTEXT_TYPE);
+ fRegistry.addContextType(HTMLTemplateContextType.HTML_CONTEXT_TYPE);
+ fRegistry.addContextType(SmartyTemplateContextType.SMARTY_CONTEXT_TYPE);
+ fRegistry.addContextType(JSTemplateContextType.JS_CONTEXT_TYPE);
}
return fRegistry;
}