PluginApis.py

changeset 33
aae0ec9126cc
parent 31
448fc0052348
child 35
908f5f14b718
equal deleted inserted replaced
32:6f5092c9b9f1 33:aae0ec9126cc
15 # Start-of-Header 15 # Start-of-Header
16 name = "APIs Plugin" 16 name = "APIs Plugin"
17 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 17 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
18 autoactivate = True 18 autoactivate = True
19 deactivateable = True 19 deactivateable = True
20 version = "3.0.1" 20 version = "3.0.2"
21 className = "PluginApis" 21 className = "PluginApis"
22 packageName = "APIs" 22 packageName = "APIs"
23 shortDescription = "API files for auto-completion and call tips." 23 shortDescription = "API files for auto-completion and call tips."
24 longDescription = ( 24 longDescription = (
25 """This plug-in provides API files for auto-completion""" 25 """This plug-in provides API files for auto-completion"""
58 """ 58 """
59 Constructor 59 Constructor
60 60
61 @param ui reference to the user interface object (UI.UserInterface) 61 @param ui reference to the user interface object (UI.UserInterface)
62 """ 62 """
63 super(PluginApis, self).__init__(ui) 63 super().__init__(ui)
64 self.__ui = ui 64 self.__ui = ui
65 65
66 def activate(self): 66 def activate(self):
67 """ 67 """
68 Public method to activate this plugin. 68 Public method to activate this plugin.

eric ide

mercurial