17 """ |
17 """ |
18 def metaPlugin(self): |
18 def metaPlugin(self): |
19 """ |
19 """ |
20 Public method to create a meta plug-in object containing plug-in info. |
20 Public method to create a meta plug-in object containing plug-in info. |
21 |
21 |
22 @ireturn meta plug-in object (QWebPluginFactory.Plugin) |
22 @return meta plug-in object (QWebPluginFactory.Plugin) |
23 @exception NotImplementedError raised to indicate that this method |
23 @exception NotImplementedError raised to indicate that this method |
24 must be implemented by subclasses |
24 must be implemented by subclasses |
25 """ |
25 """ |
26 raise NotImplementedError |
26 raise NotImplementedError |
27 |
27 |
31 |
31 |
32 @param mimeType MIME type for the plug-in (string) |
32 @param mimeType MIME type for the plug-in (string) |
33 @param url URL for the plug-in (QUrl) |
33 @param url URL for the plug-in (QUrl) |
34 @param argumentNames list of argument names (list of strings) |
34 @param argumentNames list of argument names (list of strings) |
35 @param argumentValues list of argument values (list of strings) |
35 @param argumentValues list of argument values (list of strings) |
36 @ireturn reference to the created object (QWidget) |
36 @return reference to the created object (QWidget) |
37 @exception NotImplementedError raised to indicate that this method |
37 @exception NotImplementedError raised to indicate that this method |
38 must be implemented by subclasses |
38 must be implemented by subclasses |
39 """ |
39 """ |
40 raise NotImplementedError |
40 raise NotImplementedError |
41 |
41 |