All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.TabViewDelegate

public interface TabViewDelegate
This interface wraps the Objective-C category defining delegate methods of the NSTabView 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 tabViewDidChangeNumberOfTabViewItems(TabView)
A wrapper for the - tabViewDidChangeNumberOfTabViewItems: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).
 o tabViewDidSelectTabViewItem(TabView, TabViewItem)
A wrapper for the - tabView:didSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).
 o tabViewShouldSelectTabViewItem(TabView, TabViewItem)
A wrapper for the - tabView:shouldSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).
 o tabViewWillSelectTabViewItem(TabView, TabViewItem)
A wrapper for the - tabView:willSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).

Methods

 o tabViewShouldSelectTabViewItem
 public abstract boolean tabViewShouldSelectTabViewItem(TabView tabView,
                                                        TabViewItem tabViewItem)
A wrapper for the - tabView:shouldSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).

 o tabViewWillSelectTabViewItem
 public abstract void tabViewWillSelectTabViewItem(TabView tabView,
                                                   TabViewItem tabViewItem)
A wrapper for the - tabView:willSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).

 o tabViewDidSelectTabViewItem
 public abstract void tabViewDidSelectTabViewItem(TabView tabView,
                                                  TabViewItem tabViewItem)
A wrapper for the - tabView:didSelectTabViewItem: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).

 o tabViewDidChangeNumberOfTabViewItems
 public abstract void tabViewDidChangeNumberOfTabViewItems(TabView TabView)
A wrapper for the - tabViewDidChangeNumberOfTabViewItems: Objective-C instance method implemented by delegates of the TabView class (known as the NSTabView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index