All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.MutableParagraphStyle

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

public class MutableParagraphStyle
extends ParagraphStyle
This class wraps the Objective-C class NSMutableParagraphStyle.


Constructor Index

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

Method Index

 o addTabStop(TextTab)
A wrapper for the - addTabStop: Objective-C instance method.
 o removeTabStop(TextTab)
A wrapper for the - removeTabStop: Objective-C instance method.
 o setAlignment(int)
A wrapper for the - setAlignment: Objective-C instance method.
 o setFirstLineHeadIndent(float)
A wrapper for the - setFirstLineHeadIndent: Objective-C instance method.
 o setHeadIndent(float)
A wrapper for the - setHeadIndent: Objective-C instance method.
 o setLineBreakMode(int)
A wrapper for the - setLineBreakMode: Objective-C instance method.
 o setLineSpacing(float)
A wrapper for the - setLineSpacing: Objective-C instance method.
 o setMaximumLineHeight(float)
A wrapper for the - setMaximumLineHeight: Objective-C instance method.
 o setMinimumLineHeight(float)
A wrapper for the - setMinimumLineHeight: Objective-C instance method.
 o setParagraphSpacing(float)
A wrapper for the - setParagraphSpacing: Objective-C instance method.
 o setParagraphStyle(ParagraphStyle)
A wrapper for the - setParagraphStyle: Objective-C instance method.
 o setTabStops(Array)
A wrapper for the - setTabStops: Objective-C instance method.
 o setTailIndent(float)
A wrapper for the - setTailIndent: Objective-C instance method.

Constructors

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

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

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

Methods

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

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

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

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

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

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

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

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

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

 o addTabStop
 public native void addTabStop(TextTab anObject)
A wrapper for the - addTabStop: Objective-C instance method.

 o removeTabStop
 public native void removeTabStop(TextTab anObject)
A wrapper for the - removeTabStop: Objective-C instance method.

 o setTabStops
 public native void setTabStops(Array array)
A wrapper for the - setTabStops: Objective-C instance method.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index