All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.AttributedStringAttributer

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

public class AttributedStringAttributer
extends NativeObject
This class wraps the Objective-C class NSJavaAttributedStringAttributer.


Variable Index

 o AttachmentAttributeName
 o BackgroundColorAttributeName
 o BaselineOffsetAttributeName
 o FontAttributeName
 o ForegroundColorAttributeName
 o KernAttributeName
 o LigatureAttributeName
 o LinkAttributeName
 o ParagraphStyleAttributeName
 o SingleUnderlineStyle
 o SuperscriptAttributeName
 o UnderlineStyleAttributeName

Constructor Index

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

Method Index

 o applyFontTraits(MutableAttributedString, int, Range)
A wrapper for the + applyFontTraits::range: Objective-C class method.
 o containsAttachments(AttributedString)
A wrapper for the + containsAttachments: Objective-C class method.
 o controlAttributedStringValue(Control)
A wrapper for the - controlAttributedStringValue: Objective-C instance method.
 o doubleClickAtIndex(AttributedString, int)
A wrapper for the + doubleClickAtIndex:: Objective-C class method.
 o fixAttachmentAttributeInRange(MutableAttributedString, Range)
A wrapper for the + fixAttachmentAttributeInRange:: Objective-C class method.
 o fixAttributesInRange(MutableAttributedString, Range)
A wrapper for the + fixAttributesInRange:: Objective-C class method.
 o fixFontAttributeInRange(MutableAttributedString, Range)
A wrapper for the + fixFontAttributeInRange:: Objective-C class method.
 o fixParagraphStyleAttributeInRange(MutableAttributedString, Range)
A wrapper for the + fixParagraphStyleAttributeInRange:: Objective-C class method.
 o fontAttributesInRange(AttributedString, Range)
A wrapper for the + fontAttributesInRange:: Objective-C class method.
 o lineBreakBeforeIndex(AttributedString, int, Range)
A wrapper for the + lineBreakBeforeIndex::withinRange: Objective-C class method.
 o nextWordFromIndex(AttributedString, int, boolean)
A wrapper for the + nextWordFromIndex::forward: Objective-C class method.
 o RTFDFileWrapperFromRange(AttributedString, Range, Dictionary)
A wrapper for the + RTFDFileWrapperFromRange::documentAttributes: Objective-C class method.
 o RTFDFromRange(AttributedString, Range, Dictionary)
A wrapper for the + RTFDFromRange::documentAttributes: Objective-C class method.
 o RTFFromRange(AttributedString, Range, Dictionary)
A wrapper for the + RTFFromRange::documentAttributes: Objective-C class method.
 o rulerAttributesInRange(AttributedString, Range)
A wrapper for the + rulerAttributesInRange:: Objective-C class method.
 o setAlignment(MutableAttributedString, int, Range)
A wrapper for the + setAlignment::range: Objective-C class method.
 o setControlAttributedStringValue(Control, AttributedString)
A wrapper for the - setControlAttributedStringValue:: Objective-C instance method.
 o setupWithHTML(AttributedString, Data, MutableDictionary)
A wrapper for the + setup:withHTML:documentAttributes: Objective-C class method.
 o setupWithPath(AttributedString, String, MutableDictionary)
A wrapper for the + setup:withPath:documentAttributes: Objective-C class method.
 o setupWithRTF(AttributedString, Data, MutableDictionary)
A wrapper for the + setup:withRTF:documentAttributes: Objective-C class method.
 o setupWithRTFD(AttributedString, Data, MutableDictionary)
A wrapper for the + setup:withRTFD:documentAttributes: Objective-C class method.
 o setupWithRTFDFileWrapper(AttributedString, FileWrapper, MutableDictionary)
A wrapper for the + setup:withRTFDFileWrapper:documentAttributes: Objective-C class method.
 o subscriptRange(MutableAttributedString, Range)
A wrapper for the + subscriptRange:: Objective-C class method.
 o superscriptRange(MutableAttributedString, Range)
A wrapper for the + superscriptRange:: Objective-C class method.
 o unscriptRange(MutableAttributedString, Range)
A wrapper for the + unscriptRange:: Objective-C class method.

Variables

 o FontAttributeName
 public static final String FontAttributeName
 o ParagraphStyleAttributeName
 public static final String ParagraphStyleAttributeName
 o ForegroundColorAttributeName
 public static final String ForegroundColorAttributeName
 o UnderlineStyleAttributeName
 public static final String UnderlineStyleAttributeName
 o SuperscriptAttributeName
 public static final String SuperscriptAttributeName
 o BackgroundColorAttributeName
 public static final String BackgroundColorAttributeName
 o AttachmentAttributeName
 public static final String AttachmentAttributeName
 o LigatureAttributeName
 public static final String LigatureAttributeName
 o BaselineOffsetAttributeName
 public static final String BaselineOffsetAttributeName
 o KernAttributeName
 public static final String KernAttributeName
 o LinkAttributeName
 public static final String LinkAttributeName
 o SingleUnderlineStyle
 public static final int SingleUnderlineStyle

Constructors

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

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

Methods

 o fontAttributesInRange
 public static native Dictionary fontAttributesInRange(AttributedString attrString,
                                                       Range range)
A wrapper for the + fontAttributesInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o rulerAttributesInRange
 public static native Dictionary rulerAttributesInRange(AttributedString attrString,
                                                        Range range)
A wrapper for the + rulerAttributesInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o containsAttachments
 public static native boolean containsAttachments(AttributedString attrString)
A wrapper for the + containsAttachments: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o lineBreakBeforeIndex
 public static native int lineBreakBeforeIndex(AttributedString attrString,
                                               int location,
                                               Range aRange)
A wrapper for the + lineBreakBeforeIndex::withinRange: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o doubleClickAtIndex
 public static native Range doubleClickAtIndex(AttributedString attrString,
                                               int location)
A wrapper for the + doubleClickAtIndex:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o nextWordFromIndex
 public static native int nextWordFromIndex(AttributedString attrString,
                                            int location,
                                            boolean isForward)
A wrapper for the + nextWordFromIndex::forward: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setupWithRTF
 public static native Object setupWithRTF(AttributedString attrStr,
                                          Data data,
                                          MutableDictionary attrs)
A wrapper for the + setup:withRTF:documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setupWithRTFD
 public static native Object setupWithRTFD(AttributedString attrStr,
                                           Data data,
                                           MutableDictionary attrs)
A wrapper for the + setup:withRTFD:documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setupWithPath
 public static native Object setupWithPath(AttributedString attrStr,
                                           String path,
                                           MutableDictionary attrs)
A wrapper for the + setup:withPath:documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setupWithRTFDFileWrapper
 public static native Object setupWithRTFDFileWrapper(AttributedString attrStr,
                                                      FileWrapper wrapper,
                                                      MutableDictionary attrs)
A wrapper for the + setup:withRTFDFileWrapper:documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setupWithHTML
 public static native Object setupWithHTML(AttributedString attrStr,
                                           Data data,
                                           MutableDictionary attrs)
A wrapper for the + setup:withHTML:documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o RTFFromRange
 public static native Data RTFFromRange(AttributedString attrString,
                                        Range range,
                                        Dictionary dict)
A wrapper for the + RTFFromRange::documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o RTFDFromRange
 public static native Data RTFDFromRange(AttributedString attrString,
                                         Range range,
                                         Dictionary dict)
A wrapper for the + RTFDFromRange::documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o RTFDFileWrapperFromRange
 public static native FileWrapper RTFDFileWrapperFromRange(AttributedString attrString,
                                                           Range range,
                                                           Dictionary dict)
A wrapper for the + RTFDFileWrapperFromRange::documentAttributes: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o superscriptRange
 public static native void superscriptRange(MutableAttributedString attrString,
                                            Range range)
A wrapper for the + superscriptRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o subscriptRange
 public static native void subscriptRange(MutableAttributedString attrString,
                                          Range range)
A wrapper for the + subscriptRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o unscriptRange
 public static native void unscriptRange(MutableAttributedString attrString,
                                         Range range)
A wrapper for the + unscriptRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o applyFontTraits
 public static native void applyFontTraits(MutableAttributedString attrString,
                                           int traitMask,
                                           Range range)
A wrapper for the + applyFontTraits::range: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setAlignment
 public static native void setAlignment(MutableAttributedString attrString,
                                        int alignment,
                                        Range range)
A wrapper for the + setAlignment::range: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o fixAttributesInRange
 public static native void fixAttributesInRange(MutableAttributedString attrString,
                                                Range range)
A wrapper for the + fixAttributesInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o fixFontAttributeInRange
 public static native void fixFontAttributeInRange(MutableAttributedString attrString,
                                                   Range range)
A wrapper for the + fixFontAttributeInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o fixParagraphStyleAttributeInRange
 public static native void fixParagraphStyleAttributeInRange(MutableAttributedString attrString,
                                                             Range range)
A wrapper for the + fixParagraphStyleAttributeInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o fixAttachmentAttributeInRange
 public static native void fixAttachmentAttributeInRange(MutableAttributedString attrString,
                                                         Range range)
A wrapper for the + fixAttachmentAttributeInRange:: 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o setControlAttributedStringValue
 public native void setControlAttributedStringValue(Control control,
                                                    AttributedString attrString)
A wrapper for the - setControlAttributedStringValue:: Objective-C instance 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, AttributedStringAttributer, should be enough to head you in the right direction should you find more than one such method).

 o controlAttributedStringValue
 public native AttributedString controlAttributedStringValue(Control control)
A wrapper for the - controlAttributedStringValue: Objective-C instance 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, AttributedStringAttributer, 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