All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TextTab

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

public class TextTab
extends NativeObject
implements Coding
This class wraps the Objective-C class NSTextTab.


Variable Index

 o CenterTabStopType
 o DecimalTabStopType
 o LeftTabStopType
 o RightTabStopType

Constructor Index

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

Method Index

 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 location()
A wrapper for the - location Objective-C instance method.
 o tabStopType()
A wrapper for the - tabStopType Objective-C instance method.

Variables

 o LeftTabStopType
 public static final int LeftTabStopType
 o RightTabStopType
 public static final int RightTabStopType
 o CenterTabStopType
 public static final int CenterTabStopType
 o DecimalTabStopType
 public static final int DecimalTabStopType

Constructors

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

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

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

 o TextTab
 public TextTab(int type,
                float loc)
This constructor has the same effect as calling - initWithType:location: on a newly allocated object.

Methods

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

 o tabStopType
 public native int tabStopType()
A wrapper for the - tabStopType 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