summaryrefslogtreecommitdiff
path: root/python/pydevSrc/com/jetbrains/python/debugger/pydev/PyVariableLocator.java
blob: 3ba4e1cd96de23df8f024561b846222172583f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.jetbrains.python.debugger.pydev;

/**
 * IVariableLocator knows how to produce location information
 * for CMD_GET_VARIABLE
 *
 * The location is specified as:
 *
 * thread_id, stack_frame, LOCAL|GLOBAL, attribute*
 */
public interface PyVariableLocator {

  public String getThreadId();

  public String getPyDBLocation();

}