307 |
307 |
308 @param tid id of the thread (integer) |
308 @param tid id of the thread (integer) |
309 """ |
309 """ |
310 return |
310 return |
311 |
311 |
312 def remoteClientVariables(self, scope, filterList, framenr=0): |
312 def remoteClientVariables(self, scope, filterList, framenr=0, maxSize=0): |
313 """ |
313 """ |
314 Public method to request the variables of the debugged program. |
314 Public method to request the variables of the debugged program. |
315 |
315 |
316 @param scope the scope of the variables (0 = local, 1 = global) |
316 @param scope the scope of the variables (0 = local, 1 = global) |
317 @param filterList list of variable types to filter out (list of int) |
317 @type int |
|
318 @param filterList list of variable types to filter out |
|
319 @type list of int |
|
320 @param framenr framenumber of the variables to retrieve |
|
321 @type int |
|
322 @param maxSize maximum size the formatted value of a variable will |
|
323 be shown. If it is bigger than that, a 'too big' indication will |
|
324 be given (@@TOO_BIG_TO_SHOW@@). |
|
325 @type int |
|
326 """ |
|
327 return |
|
328 |
|
329 def remoteClientVariable(self, scope, filterList, var, framenr=0, |
|
330 maxSize=0): |
|
331 """ |
|
332 Public method to request the variables of the debugged program. |
|
333 |
|
334 @param scope the scope of the variables (0 = local, 1 = global) |
|
335 @type int |
|
336 @param filterList list of variable types to filter out |
|
337 @type list of int |
|
338 @param var list encoded name of variable to retrieve |
|
339 @type list of str |
318 @param framenr framenumber of the variables to retrieve (int) |
340 @param framenr framenumber of the variables to retrieve (int) |
319 """ |
341 @type int |
320 return |
342 @param maxSize maximum size the formatted value of a variable will |
321 |
343 be shown. If it is bigger than that, a 'too big' indication will |
322 def remoteClientVariable(self, scope, filterList, var, framenr=0): |
344 be given (@@TOO_BIG_TO_SHOW@@). |
323 """ |
345 @type int |
324 Public method to request the variables of the debugged program. |
|
325 |
|
326 @param scope the scope of the variables (0 = local, 1 = global) |
|
327 @param filterList list of variable types to filter out (list of int) |
|
328 @param var list encoded name of variable to retrieve (string) |
|
329 @param framenr framenumber of the variables to retrieve (int) |
|
330 """ |
346 """ |
331 return |
347 return |
332 |
348 |
333 def remoteClientSetFilter(self, scope, filterStr): |
349 def remoteClientSetFilter(self, scope, filterStr): |
334 """ |
350 """ |