Debugger/DebuggerInterfaceRuby.py

changeset 2953
703452a2876f
parent 2302
f29e9405c851
child 2988
f53c03574697
diff -r 94fc661a54a2 -r 703452a2876f Debugger/DebuggerInterfaceRuby.py
--- a/Debugger/DebuggerInterfaceRuby.py	Sat Sep 28 17:40:42 2013 +0200
+++ b/Debugger/DebuggerInterfaceRuby.py	Sat Sep 28 19:06:25 2013 +0200
@@ -439,6 +439,8 @@
         @param wd the working directory for the program (string)
         @keyparam erase flag indicating that coverage info should be
             cleared first (boolean)
+        @exception NotImplementedError raised to indicate that this interface
+            is not supported
         """
         raise NotImplementedError("Interface not available.")
 
@@ -450,6 +452,8 @@
         @param argv the commandline arguments to pass to the program (string)
         @param wd the working directory for the program (string)
         @keyparam erase flag indicating that timing info should be cleared first (boolean)
+        @exception NotImplementedError raised to indicate that this interface
+            is not supported
         """
         raise NotImplementedError("Interface not available.")
 
@@ -680,18 +684,26 @@
         @param covname filename to be used to assemble the coverage caches
                 filename (string)
         @param coverase flag indicating erasure of coverage data is requested (boolean)
+        @exception NotImplementedError raised to indicate that this interface
+            is not supported
         """
         raise NotImplementedError("Interface not available.")
         
     def remoteUTRun(self):
         """
         Public method to start a unittest run.
+        
+        @exception NotImplementedError raised to indicate that this interface
+            is not supported
         """
         raise NotImplementedError("Interface not available.")
         
     def remoteUTStop(self):
         """
-        public method to stop a unittest run.
+        Public method to stop a unittest run.
+        
+        @exception NotImplementedError raised to indicate that this interface
+            is not supported
         """
         raise NotImplementedError("Interface not available.")
         

eric ide

mercurial