X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/text/SmartyCompletionProcessor.java b/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/text/SmartyCompletionProcessor.java index d20fead..1aef925 100644 --- a/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/text/SmartyCompletionProcessor.java +++ b/net.sourceforge.phpeclipse.smarty.ui/src/net/sourceforge/phpdt/smarty/ui/internal/text/SmartyCompletionProcessor.java @@ -18,18 +18,18 @@ import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.ITextViewer; import org.eclipse.jface.text.templates.TemplateContextType; - /** * A completion processor for XML templates. */ public class SmartyCompletionProcessor extends BasicCompletionProcessor { - + /** - * Return the XML context type that is supported by this plugin. + * Return the XML context type that is supported by this plugin. */ - protected TemplateContextType getContextType(ITextViewer viewer, IRegion region) { - return WebUI.getDefault().getContextTypeRegistry().getContextType(HTMLContextType.HTML_CONTEXT_TYPE); + protected TemplateContextType getContextType(ITextViewer viewer, + IRegion region) { + return WebUI.getDefault().getContextTypeRegistry().getContextType( + HTMLContextType.HTML_CONTEXT_TYPE); } - }