blob: 3ba4e1cd96de23df8f024561b846222172583f5c [file] [log] [blame]
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();
}