use of org.eclipse.jdt.internal.ui.text.template.contentassist.TemplateEngine in project che by eclipse.
the class TemplateCompletionProposalComputer method createTemplateEngine.
private static TemplateEngine createTemplateEngine(ContextTypeRegistry templateContextRegistry, String contextTypeId) {
TemplateContextType contextType = templateContextRegistry.getContextType(contextTypeId);
Assert.isNotNull(contextType);
return new TemplateEngine(contextType);
}
Aggregations