def run(self):
                from org.python.pydev.editor.templates import TemplateHelper  #@UnresolvedImport
                editor = self.editor

                TemplateHelper.clearTemplateRegistryCache()
                editor.showInformationDialog("Ok",
                                             "Ok, cleared templates cache.")
 def run(self):
     from org.python.pydev.editor.templates import TemplateHelper  #@UnresolvedImport
     TemplateHelper.clearTemplateRegistryCache()
     MessageDialog.openInformation(editor.getSite().getShell(), "Ok",
                                   "Ok, cleared templates cache.")
 def run(self):
     from org.python.pydev.editor.templates import TemplateHelper
     TemplateHelper.clearTemplateRegistryCache()
     MessageDialog.openInformation(editor.getSite().getShell(), "Ok", "Ok, cleared templates cache.");
 def run(self):
     from org.python.pydev.editor.templates import TemplateHelper #@UnresolvedImport
     editor = self.editor
     
     TemplateHelper.clearTemplateRegistryCache()
     editor.showInformationDialog("Ok", "Ok, cleared templates cache.");