All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.OutlineView

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.Control
                                   |
                                   +----com.apple.alpha.app.TableView
                                           |
                                           +----com.apple.alpha.app.OutlineView

public class OutlineView
extends TableView
This class wraps the Objective-C class NSOutlineView.


Variable Index

 o OutlineViewColumnDidMoveNotification
 o OutlineViewColumnDidResizeNotification
 o OutlineViewItemDidCollapseNotification
 o OutlineViewItemDidExpandNotification
 o OutlineViewSelectionDidChangeNotification
 o OutlineViewSelectionIsChangingNotification

Constructor Index

 o OutlineView()
This default constructor is equivalent to Objective-C's [[NSOutlineView alloc] init].
 o OutlineView(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o OutlineView(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o OutlineView(Rect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Method Index

 o collapseItem(Object)
A wrapper for the - collapseItem: Objective-C instance method.
 o collapseItemAndChildren(Object, boolean)
A wrapper for the - collapseItem:collapseChildren: Objective-C instance method.
 o expandItem(Object)
A wrapper for the - expandItem: Objective-C instance method.
 o expandItemAndChildren(Object, boolean)
A wrapper for the - expandItem:expandChildren: Objective-C instance method.
 o indentationMarkerFollowsCell()
A wrapper for the - indentationMarkerFollowsCell Objective-C instance method.
 o indentationPerLevel()
A wrapper for the - indentationPerLevel Objective-C instance method.
 o isExpandable(Object)
A wrapper for the - isExpandable: Objective-C instance method.
 o isItemExpanded(Object)
A wrapper for the - isItemExpanded: Objective-C instance method.
 o itemAtRow(int)
A wrapper for the - itemAtRow: Objective-C instance method.
 o levelForItem(Object)
A wrapper for the - levelForItem: Objective-C instance method.
 o levelForRow(int)
A wrapper for the - levelForRow: Objective-C instance method.
 o outlineTableColumn()
A wrapper for the - outlineTableColumn Objective-C instance method.
 o reloadItem(Object)
A wrapper for the - reloadItem: Objective-C instance method.
 o reloadItemAndChildren(Object, boolean)
A wrapper for the - reloadItem:reloadChildren: Objective-C instance method.
 o rowForItem(Object)
A wrapper for the - rowForItem: Objective-C instance method.
 o setIndentationMarkerFollowsCell(boolean)
A wrapper for the - setIndentationMarkerFollowsCell: Objective-C instance method.
 o setIndentationPerLevel(float)
A wrapper for the - setIndentationPerLevel: Objective-C instance method.
 o setOutlineTableColumn(TableColumn)
A wrapper for the - setOutlineTableColumn: Objective-C instance method.

Variables

 o OutlineViewSelectionDidChangeNotification
 public static final String OutlineViewSelectionDidChangeNotification
 o OutlineViewColumnDidMoveNotification
 public static final String OutlineViewColumnDidMoveNotification
 o OutlineViewColumnDidResizeNotification
 public static final String OutlineViewColumnDidResizeNotification
 o OutlineViewSelectionIsChangingNotification
 public static final String OutlineViewSelectionIsChangingNotification
 o OutlineViewItemDidExpandNotification
 public static final String OutlineViewItemDidExpandNotification
 o OutlineViewItemDidCollapseNotification
 public static final String OutlineViewItemDidCollapseNotification

Constructors

 o OutlineView
 protected OutlineView(boolean shouldAllocate,
                       int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o OutlineView
 public OutlineView()
This default constructor is equivalent to Objective-C's [[NSOutlineView alloc] init].

 o OutlineView
 public OutlineView(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o OutlineView
 public OutlineView(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o setOutlineTableColumn
 public native void setOutlineTableColumn(TableColumn outlineTableColumn)
A wrapper for the - setOutlineTableColumn: Objective-C instance method.

 o outlineTableColumn
 public native TableColumn outlineTableColumn()
A wrapper for the - outlineTableColumn Objective-C instance method.

 o isExpandable
 public native boolean isExpandable(Object item)
A wrapper for the - isExpandable: Objective-C instance method.

 o expandItemAndChildren
 public native void expandItemAndChildren(Object item,
                                          boolean expandChildren)
A wrapper for the - expandItem:expandChildren: Objective-C instance method.

 o expandItem
 public native void expandItem(Object item)
A wrapper for the - expandItem: Objective-C instance method.

 o collapseItemAndChildren
 public native void collapseItemAndChildren(Object item,
                                            boolean collapseChildren)
A wrapper for the - collapseItem:collapseChildren: Objective-C instance method.

 o collapseItem
 public native void collapseItem(Object item)
A wrapper for the - collapseItem: Objective-C instance method.

 o reloadItemAndChildren
 public native void reloadItemAndChildren(Object item,
                                          boolean reloadChildren)
A wrapper for the - reloadItem:reloadChildren: Objective-C instance method.

 o reloadItem
 public native void reloadItem(Object item)
A wrapper for the - reloadItem: Objective-C instance method.

 o itemAtRow
 public native Object itemAtRow(int row)
A wrapper for the - itemAtRow: Objective-C instance method.

 o rowForItem
 public native int rowForItem(Object item)
A wrapper for the - rowForItem: Objective-C instance method.

 o levelForItem
 public native int levelForItem(Object item)
A wrapper for the - levelForItem: Objective-C instance method.

 o levelForRow
 public native int levelForRow(int row)
A wrapper for the - levelForRow: Objective-C instance method.

 o isItemExpanded
 public native boolean isItemExpanded(Object item)
A wrapper for the - isItemExpanded: Objective-C instance method.

 o setIndentationPerLevel
 public native void setIndentationPerLevel(float indentationPerLevel)
A wrapper for the - setIndentationPerLevel: Objective-C instance method.

 o indentationPerLevel
 public native float indentationPerLevel()
A wrapper for the - indentationPerLevel Objective-C instance method.

 o setIndentationMarkerFollowsCell
 public native void setIndentationMarkerFollowsCell(boolean drawInCell)
A wrapper for the - setIndentationMarkerFollowsCell: Objective-C instance method.

 o indentationMarkerFollowsCell
 public native boolean indentationMarkerFollowsCell()
A wrapper for the - indentationMarkerFollowsCell Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index