Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py

changeset 2954
bf0215fe12d1
parent 2302
f29e9405c851
child 3057
10516539f238
child 3160
209a07d7e401
--- a/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py	Sat Sep 28 19:06:25 2013 +0200
+++ b/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py	Sat Sep 28 20:07:36 2013 +0200
@@ -34,6 +34,8 @@
         Public method to set the path of the bookmarks file or directory.
         
         @param path bookmarks file or directory (string)
+        @exception NotImplementedError raised to indicate this method must
+            be implemented by a subclass
         """
         raise NotImplementedError
     
@@ -41,7 +43,10 @@
         """
         Public method to open the bookmarks file.
         
-        @return flag indicating success (boolean)
+        It must return a flag indicating success (boolean).
+        
+        @exception NotImplementedError raised to indicate this method must
+            be implemented by a subclass
         """
         raise NotImplementedError
     
@@ -49,7 +54,10 @@
         """
         Public method to get the imported bookmarks.
         
-        @return imported bookmarks (BookmarkNode)
+        It must return the imported bookmarks (BookmarkNode).
+        
+        @exception NotImplementedError raised to indicate this method must
+            be implemented by a subclass
         """
         raise NotImplementedError
     

eric ide

mercurial