link start!
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user