All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.TableViewDelegate

public interface TableViewDelegate
This interface wraps the Objective-C category defining delegate methods of the NSTableView class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o selectionShouldChangeInTableView(TableView)
A wrapper for the - selectionShouldChangeInTableView: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).
 o tableViewShouldEditLocation(TableView, TableColumn, int)
A wrapper for the - tableView:shouldEditTableColumn:row: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).
 o tableViewShouldSelectRow(TableView, int)
A wrapper for the - tableView:shouldSelectRow: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).
 o tableViewShouldSelectTableColumn(TableView, TableColumn)
A wrapper for the - tableView:shouldSelectTableColumn: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).
 o tableViewWillDisplayCell(TableView, Object, TableColumn, int)
A wrapper for the - tableView:willDisplayCell:forTableColumn:row: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).

Methods

 o tableViewWillDisplayCell
 public abstract void tableViewWillDisplayCell(TableView tableView,
                                               Object cell,
                                               TableColumn tableColumn,
                                               int row)
A wrapper for the - tableView:willDisplayCell:forTableColumn:row: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).

 o tableViewShouldEditLocation
 public abstract boolean tableViewShouldEditLocation(TableView tableView,
                                                     TableColumn tableColumn,
                                                     int row)
A wrapper for the - tableView:shouldEditTableColumn:row: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).

 o selectionShouldChangeInTableView
 public abstract boolean selectionShouldChangeInTableView(TableView aTableView)
A wrapper for the - selectionShouldChangeInTableView: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).

 o tableViewShouldSelectRow
 public abstract boolean tableViewShouldSelectRow(TableView tableView,
                                                  int row)
A wrapper for the - tableView:shouldSelectRow: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).

 o tableViewShouldSelectTableColumn
 public abstract boolean tableViewShouldSelectTableColumn(TableView tableView,
                                                          TableColumn tableColumn)
A wrapper for the - tableView:shouldSelectTableColumn: Objective-C instance method implemented by delegates of the TableView class (known as the NSTableView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index