All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.FormCell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Cell
                   |
                   +----com.apple.alpha.app.ActionCell
                           |
                           +----com.apple.alpha.app.FormCell

public class FormCell
extends ActionCell
This class wraps the Objective-C class NSFormCell.


Constructor Index

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

Method Index

 o attributedTitle()
A wrapper for the - attributedTitle Objective-C instance method.
 o isOpaque()
A wrapper for the - isOpaque Objective-C instance method.
 o setAttributedTitle(AttributedString)
A wrapper for the - setAttributedTitle: Objective-C instance method.
 o setTitle(String)
A wrapper for the - setTitle: Objective-C instance method.
 o setTitleAlignment(int)
A wrapper for the - setTitleAlignment: Objective-C instance method.
 o setTitleFont(Font)
A wrapper for the - setTitleFont: Objective-C instance method.
 o setTitleWidth(float)
A wrapper for the - setTitleWidth: Objective-C instance method.
 o setTitleWithMnemonic(String)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.
 o title()
A wrapper for the - title Objective-C instance method.
 o titleAlignment()
A wrapper for the - titleAlignment Objective-C instance method.
 o titleFont()
A wrapper for the - titleFont Objective-C instance method.
 o titleWidth()
A wrapper for the - titleWidth Objective-C instance method.
 o titleWidthWithSize(Size)
A wrapper for the - titleWidth: Objective-C instance method.

Constructors

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

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

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

Methods

 o titleWidthWithSize
 public native float titleWidthWithSize(Size aSize)
A wrapper for the - titleWidth: Objective-C instance method.

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

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

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

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

 o titleFont
 public native Font titleFont()
A wrapper for the - titleFont Objective-C instance method.

 o setTitleFont
 public native void setTitleFont(Font fontObj)
A wrapper for the - setTitleFont: Objective-C instance method.

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

 o setTitleAlignment
 public native void setTitleAlignment(int mode)
A wrapper for the - setTitleAlignment: Objective-C instance method.

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

Overrides:
isOpaque in class Cell
 o setTitleWithMnemonic
 public native void setTitleWithMnemonic(String stringWithAmpersand)
A wrapper for the - setTitleWithMnemonic: Objective-C instance method.

Overrides:
setTitleWithMnemonic in class Cell
 o attributedTitle
 public native AttributedString attributedTitle()
A wrapper for the - attributedTitle Objective-C instance method.

 o setAttributedTitle
 public native void setAttributedTitle(AttributedString obj)
A wrapper for the - setAttributedTitle: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index