All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.SplitViewDelegate

public interface SplitViewDelegate
This interface wraps the Objective-C category defining delegate methods of the NSSplitView 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 splitViewDidResizeSubviews(Notification)
A wrapper for the - splitViewDidResizeSubviews: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).
 o splitViewResizeSubviews(SplitView, Size)
A wrapper for the - splitView:resizeSubviewsWithOldSize: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).
 o splitViewWillResizeSubviews(Notification)
A wrapper for the - splitViewWillResizeSubviews: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).

Methods

 o splitViewResizeSubviews
 public abstract void splitViewResizeSubviews(SplitView sender,
                                              Size oldSize)
A wrapper for the - splitView:resizeSubviewsWithOldSize: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).

 o splitViewWillResizeSubviews
 public abstract void splitViewWillResizeSubviews(Notification notification)
A wrapper for the - splitViewWillResizeSubviews: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).

 o splitViewDidResizeSubviews
 public abstract void splitViewDidResizeSubviews(Notification notification)
A wrapper for the - splitViewDidResizeSubviews: Objective-C instance method implemented by delegates of the SplitView class (known as the NSSplitView Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index