All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.AttributedStringDrawer

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

public class AttributedStringDrawer
extends NativeObject
This class wraps the Objective-C class NSJavaAttributedStringDrawer.


Constructor Index

 o AttributedStringDrawer()
This default constructor is equivalent to Objective-C's [[NSJavaAttributedStringDrawer alloc] init].
 o AttributedStringDrawer(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o drawAtPoint(AttributedString, Point)
A wrapper for the + drawAtPoint:: Objective-C class method.
 o drawInRect(AttributedString, Rect)
A wrapper for the + drawInRect:: Objective-C class method.
 o size(AttributedString)
A wrapper for the + size: Objective-C class method.

Constructors

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

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

Methods

 o size
 public static native Size size(AttributedString attrString)
A wrapper for the + size: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, AttributedStringDrawer, should be enough to head you in the right direction should you find more than one such method).

 o drawAtPoint
 public static native void drawAtPoint(AttributedString attrString,
                                       Point point)
A wrapper for the + drawAtPoint:: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, AttributedStringDrawer, should be enough to head you in the right direction should you find more than one such method).

 o drawInRect
 public static native void drawInRect(AttributedString attrString,
                                      Rect rect)
A wrapper for the + drawInRect:: Objective-C class method. Since this method is not part of the original Objective-C Yellow Box APIs, a link to the relevant documentation cannot be provided at this time. Please look for a method with a similar name in the Objective-C reference (the name of this class, AttributedStringDrawer, should be enough to head you in the right direction should you find more than one such method).


All Packages  Class Hierarchy  This Package  Previous  Next  Index