Add docstrings for SetCondition() and GetCondition() APIs.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142396 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBWatchpoint.i b/scripts/Python/interface/SBWatchpoint.i
index 7525931..47177c7 100644
--- a/scripts/Python/interface/SBWatchpoint.i
+++ b/scripts/Python/interface/SBWatchpoint.i
@@ -66,9 +66,19 @@
     void
     SetIgnoreCount (uint32_t n);
 
+    %feature("docstring", "
+    //------------------------------------------------------------------
+    /// Get the condition expression for the watchpoint.
+    //------------------------------------------------------------------
+    ") GetCondition;
     const char *
     GetCondition ();
 
+    %feature("docstring", "
+    //--------------------------------------------------------------------------
+    /// The watchpoint stops only if the condition expression evaluates to true.
+    //--------------------------------------------------------------------------
+    ") SetCondition;
     void 
     SetCondition (const char *condition);