Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 2954
bf0215fe12d1
child 3145
a9de05d4a22f
--- a/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py	Fri Oct 18 23:00:41 2013 +0200
@@ -36,6 +36,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
     
@@ -43,7 +45,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
     
@@ -51,7 +56,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