All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.OutlineViewDelegate

public interface OutlineViewDelegate
This interface wraps the Objective-C category defining delegate methods of the NSOutlineView 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 outlineViewShouldCollapseItem(OutlineView, Object)
A wrapper for the - outlineView:shouldCollapseItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewShouldEditTableColumn(OutlineView, TableColumn, Object)
A wrapper for the - outlineView:shouldEditTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewShouldExpandItem(OutlineView, Object)
A wrapper for the - outlineView:shouldExpandItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewShouldSelectItem(OutlineView, Object)
A wrapper for the - outlineView:shouldSelectItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewShouldSelectTableColumn(OutlineView, TableColumn)
A wrapper for the - outlineView:shouldSelectTableColumn: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewWillCollapseItem(OutlineView, Object)
A wrapper for the - outlineView:willCollapseItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewWillDisplayCell(OutlineView, Object, TableColumn, Object)
A wrapper for the - outlineView:willDisplayCell:forTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewWillDisplayOutlineCellForTableColumn(OutlineView, Object, TableColumn, Object)
A wrapper for the - outlineView:willDisplayOutlineCell:forTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o outlineViewWillExpandItem(OutlineView, Object)
A wrapper for the - outlineView:willExpandItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).
 o selectionShouldChangeInOutlineView(OutlineView)
A wrapper for the - selectionShouldChangeInOutlineView: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

Methods

 o outlineViewWillDisplayCell
 public abstract void outlineViewWillDisplayCell(OutlineView outlineView,
                                                 Object cell,
                                                 TableColumn tableColumn,
                                                 Object item)
A wrapper for the - outlineView:willDisplayCell:forTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewShouldEditTableColumn
 public abstract boolean outlineViewShouldEditTableColumn(OutlineView outlineView,
                                                          TableColumn tableColumn,
                                                          Object item)
A wrapper for the - outlineView:shouldEditTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o selectionShouldChangeInOutlineView
 public abstract boolean selectionShouldChangeInOutlineView(OutlineView outlineView)
A wrapper for the - selectionShouldChangeInOutlineView: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewShouldSelectItem
 public abstract boolean outlineViewShouldSelectItem(OutlineView outlineView,
                                                     Object item)
A wrapper for the - outlineView:shouldSelectItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewShouldSelectTableColumn
 public abstract boolean outlineViewShouldSelectTableColumn(OutlineView outlineView,
                                                            TableColumn tableColumn)
A wrapper for the - outlineView:shouldSelectTableColumn: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewShouldExpandItem
 public abstract boolean outlineViewShouldExpandItem(OutlineView outlineView,
                                                     Object item)
A wrapper for the - outlineView:shouldExpandItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewWillExpandItem
 public abstract void outlineViewWillExpandItem(OutlineView outlineView,
                                                Object item)
A wrapper for the - outlineView:willExpandItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewShouldCollapseItem
 public abstract boolean outlineViewShouldCollapseItem(OutlineView outlineView,
                                                       Object item)
A wrapper for the - outlineView:shouldCollapseItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewWillCollapseItem
 public abstract void outlineViewWillCollapseItem(OutlineView outlineView,
                                                  Object item)
A wrapper for the - outlineView:willCollapseItem: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).

 o outlineViewWillDisplayOutlineCellForTableColumn
 public abstract void outlineViewWillDisplayOutlineCellForTableColumn(OutlineView outlineView,
                                                                      Object cell,
                                                                      TableColumn tableColumn,
                                                                      Object item)
A wrapper for the - outlineView:willDisplayOutlineCell:forTableColumn:item: Objective-C instance method implemented by delegates of the OutlineView class (known as the NSOutlineView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index