link start!
This commit is contained in:
@@ -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