link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,14 @@
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);
}
@@ -0,0 +1,7 @@
package org.mozilla.javascript.tools.debugger;
import org.mozilla.javascript.Scriptable;
public interface ScopeProvider {
Scriptable getScope();
}
@@ -0,0 +1,17 @@
package org.mozilla.javascript.tools.debugger.treetable;
import javax.swing.tree.TreeModel;
public interface TreeTableModel extends TreeModel {
Class<?> getColumnClass(int i);
int getColumnCount();
String getColumnName(int i);
Object getValueAt(Object obj, int i);
boolean isCellEditable(Object obj, int i);
void setValueAt(Object obj, Object obj2, int i);
}