15 lines
423 B
Java
15 lines
423 B
Java
package org.mozilla.javascript.tools.debugger;
|
|
|
|
import org.mozilla.javascript.tools.debugger.Dim.SourceInfo;
|
|
import org.mozilla.javascript.tools.debugger.Dim.StackFrame;
|
|
|
|
public interface GuiCallback {
|
|
void dispatchNextGuiEvent() throws InterruptedException;
|
|
|
|
void enterInterrupt(StackFrame stackFrame, String str, String str2);
|
|
|
|
boolean isGuiEventThread();
|
|
|
|
void updateSourceText(SourceInfo sourceInfo);
|
|
}
|