2026-03-17 13:31:18 -07:00

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);
}