All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ParagraphStyle

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

public class ParagraphStyle
extends NativeObject
implements Coding
This class wraps the Objective-C class NSParagraphStyle.


Variable Index

 o CenterTabStopType
 o DecimalTabStopType
 o LeftTabStopType
 o LineBreakByCharWrapping
 o LineBreakByClipping
 o LineBreakByTruncatingHead
 o LineBreakByTruncatingMiddle
 o LineBreakByTruncatingTail
 o LineBreakByWordWrapping
 o RightTabStopType

Constructor Index

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

Method Index

 o alignment()
A wrapper for the - alignment Objective-C instance method.
 o defaultParagraphStyle()
A wrapper for the + defaultParagraphStyle Objective-C class 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 firstLineHeadIndent()
A wrapper for the - firstLineHeadIndent Objective-C instance method.
 o headIndent()
A wrapper for the - headIndent Objective-C instance method.
 o lineBreakMode()
A wrapper for the - lineBreakMode Objective-C instance method.
 o lineSpacing()
A wrapper for the - lineSpacing Objective-C instance method.
 o maximumLineHeight()
A wrapper for the - maximumLineHeight Objective-C instance method.
 o minimumLineHeight()
A wrapper for the - minimumLineHeight Objective-C instance method.
 o paragraphSpacing()
A wrapper for the - paragraphSpacing Objective-C instance method.
 o tabStops()
A wrapper for the - tabStops Objective-C instance method.
 o tailIndent()
A wrapper for the - tailIndent 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
 o LineBreakByWordWrapping
 public static final int LineBreakByWordWrapping
 o LineBreakByCharWrapping
 public static final int LineBreakByCharWrapping
 o LineBreakByClipping
 public static final int LineBreakByClipping
 o LineBreakByTruncatingHead
 public static final int LineBreakByTruncatingHead
 o LineBreakByTruncatingTail
 public static final int LineBreakByTruncatingTail
 o LineBreakByTruncatingMiddle
 public static final int LineBreakByTruncatingMiddle

Constructors

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

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

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

Methods

 o defaultParagraphStyle
 public static native ParagraphStyle defaultParagraphStyle()
A wrapper for the + defaultParagraphStyle Objective-C class method.

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

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

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

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

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

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

 o tabStops
 public native Array tabStops()
A wrapper for the - tabStops Objective-C instance method.

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

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

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