C# Class Rhino.Tools.Debugger.Treetable.TreeTableModelAdapter

Inheritance: AbstractTableModel
Show file Open project: hazzik/Rhino.Net Class Usage Examples

Public Methods

Method Description
GetColumnClass ( int column ) : Type
GetColumnCount ( ) : int
GetColumnName ( int column ) : string
GetRowCount ( ) : int
GetValueAt ( int row, int column ) : object
IsCellEditable ( int row, int column ) : bool
SetValueAt ( object value, int row, int column ) : void
TreeTableModelAdapter ( TreeTableModel treeTableModel, JTree tree ) : System

Protected Methods

Method Description
DelayedFireTableDataChanged ( ) : void

Invokes fireTableDataChanged after all the pending events have been processed.

Invokes fireTableDataChanged after all the pending events have been processed. SwingUtilities.invokeLater is used to handle this.

NodeForRow ( int row ) : object

Method Details

DelayedFireTableDataChanged() protected method

Invokes fireTableDataChanged after all the pending events have been processed.
Invokes fireTableDataChanged after all the pending events have been processed. SwingUtilities.invokeLater is used to handle this.
protected DelayedFireTableDataChanged ( ) : void
return void

GetColumnClass() public method

public GetColumnClass ( int column ) : Type
column int
return System.Type

GetColumnCount() public method

public GetColumnCount ( ) : int
return int

GetColumnName() public method

public GetColumnName ( int column ) : string
column int
return string

GetRowCount() public method

public GetRowCount ( ) : int
return int

GetValueAt() public method

public GetValueAt ( int row, int column ) : object
row int
column int
return object

IsCellEditable() public method

public IsCellEditable ( int row, int column ) : bool
row int
column int
return bool

NodeForRow() protected method

protected NodeForRow ( int row ) : object
row int
return object

SetValueAt() public method

public SetValueAt ( object value, int row, int column ) : void
value object
row int
column int
return void

TreeTableModelAdapter() public method

public TreeTableModelAdapter ( TreeTableModel treeTableModel, JTree tree ) : System
treeTableModel TreeTableModel
tree JTree
return System