All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TabViewItem

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.TabViewItem

public class TabViewItem
extends NativeObject
implements Coding
This class wraps the Objective-C class NSTabViewItem.


Constructor Index

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

Method Index

 o color()
A wrapper for the - color Objective-C instance method.
 o drawLabel(boolean, Rect)
A wrapper for the - drawLabel:inRect: Objective-C instance method.
 o encodeWithCoder(Coder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).
 o identifier()
A wrapper for the - identifier Objective-C instance method.
 o initialFirstResponder()
A wrapper for the - initialFirstResponder Objective-C instance method.
 o label()
A wrapper for the - label Objective-C instance method.
 o setColor(Color)
A wrapper for the - setColor: Objective-C instance method.
 o setIdentifier(Object)
A wrapper for the - setIdentifier: Objective-C instance method.
 o setInitialFirstResponder(View)
A wrapper for the - setInitialFirstResponder: Objective-C instance method.
 o setLabel(String)
A wrapper for the - setLabel: Objective-C instance method.
 o setView(View)
A wrapper for the - setView: Objective-C instance method.
 o sizeOfLabel(boolean)
A wrapper for the - sizeOfLabel: Objective-C instance method.
 o tabState()
A wrapper for the - tabState Objective-C instance method.
 o tabView()
A wrapper for the - tabView Objective-C instance method.
 o view()
A wrapper for the - view Objective-C instance method.

Constructors

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

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

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

 o TabViewItem
 public TabViewItem(Object identifier)
This constructor has the same effect as calling - initWithIdentifier: on a newly allocated object.

Methods

 o identifier
 public native Object identifier()
A wrapper for the - identifier Objective-C instance method.

 o view
 public native Object view()
A wrapper for the - view Objective-C instance method.

 o initialFirstResponder
 public native Object initialFirstResponder()
A wrapper for the - initialFirstResponder Objective-C instance method.

 o label
 public native String label()
A wrapper for the - label Objective-C instance method.

 o color
 public native Color color()
A wrapper for the - color Objective-C instance method.

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

 o tabView
 public native TabView tabView()
A wrapper for the - tabView Objective-C instance method.

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

 o setLabel
 public native void setLabel(String label)
A wrapper for the - setLabel: Objective-C instance method.

 o setColor
 public native void setColor(Color color)
A wrapper for the - setColor: Objective-C instance method.

 o setView
 public native void setView(View view)
A wrapper for the - setView: Objective-C instance method.

 o setInitialFirstResponder
 public native void setInitialFirstResponder(View view)
A wrapper for the - setInitialFirstResponder: Objective-C instance method.

 o drawLabel
 public native void drawLabel(boolean shouldTruncateLabel,
                              Rect tabRect)
A wrapper for the - drawLabel:inRect: Objective-C instance method.

 o sizeOfLabel
 public native Size sizeOfLabel(boolean shouldTruncateLabel)
A wrapper for the - sizeOfLabel: Objective-C instance method.

 o encodeWithCoder
 public native void encodeWithCoder(Coder aCoder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).


All Packages  Class Hierarchy  This Package  Previous  Next  Index