All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ImageRep

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

public class ImageRep
extends NativeObject
implements Coding
This class wraps the Objective-C class NSImageRep.


Variable Index

 o ImageRepRegistryDidChangeNotification

Constructor Index

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

Method Index

 o bitsPerSample()
A wrapper for the - bitsPerSample Objective-C instance method.
 o canInitWithData(Data)
A wrapper for the + canInitWithData: Objective-C class method.
 o canInitWithPasteboard(Pasteboard)
A wrapper for the + canInitWithPasteboard: Objective-C class method.
 o colorSpaceName()
A wrapper for the - colorSpaceName Objective-C instance method.
 o draw()
A wrapper for the - draw Objective-C instance method.
 o drawAtPoint(Point)
A wrapper for the - drawAtPoint: Objective-C instance method.
 o drawInRect(Rect)
A wrapper for the - drawInRect: Objective-C instance 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 hasAlpha()
A wrapper for the - hasAlpha Objective-C instance method.
 o imageFileTypes()
A wrapper for the + imageFileTypes Objective-C class method.
 o imagePasteboardTypes()
A wrapper for the + imagePasteboardTypes Objective-C class method.
 o imageUnfilteredFileTypes()
A wrapper for the + imageUnfilteredFileTypes Objective-C class method.
 o imageUnfilteredPasteboardTypes()
A wrapper for the + imageUnfilteredPasteboardTypes Objective-C class method.
 o isOpaque()
A wrapper for the - isOpaque Objective-C instance method.
 o pixelsHigh()
A wrapper for the - pixelsHigh Objective-C instance method.
 o pixelsWide()
A wrapper for the - pixelsWide Objective-C instance method.
 o setAlpha(boolean)
A wrapper for the - setAlpha: Objective-C instance method.
 o setBitsPerSample(int)
A wrapper for the - setBitsPerSample: Objective-C instance method.
 o setColorSpaceName(String)
A wrapper for the - setColorSpaceName: Objective-C instance method.
 o setOpaque(boolean)
A wrapper for the - setOpaque: Objective-C instance method.
 o setPixelsHigh(int)
A wrapper for the - setPixelsHigh: Objective-C instance method.
 o setPixelsWide(int)
A wrapper for the - setPixelsWide: Objective-C instance method.
 o setSize(Size)
A wrapper for the - setSize: Objective-C instance method.
 o size()
A wrapper for the - size Objective-C instance method.

Variables

 o ImageRepRegistryDidChangeNotification
 public static final String ImageRepRegistryDidChangeNotification

Constructors

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

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

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

Methods

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

 o drawAtPoint
 public native boolean drawAtPoint(Point point)
A wrapper for the - drawAtPoint: Objective-C instance method.

 o drawInRect
 public native boolean drawInRect(Rect rect)
A wrapper for the - drawInRect: Objective-C instance method.

 o setSize
 public native void setSize(Size aSize)
A wrapper for the - setSize: Objective-C instance method.

 o size
 public native Size size()
A wrapper for the - size Objective-C instance method.

 o setAlpha
 public native void setAlpha(boolean flag)
A wrapper for the - setAlpha: Objective-C instance method.

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

 o setOpaque
 public native void setOpaque(boolean flag)
A wrapper for the - setOpaque: Objective-C instance method.

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

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

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

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

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

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

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

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

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

 o canInitWithData
 public static native boolean canInitWithData(Data data)
A wrapper for the + canInitWithData: Objective-C class method.

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

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

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

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

 o canInitWithPasteboard
 public static native boolean canInitWithPasteboard(Pasteboard pasteboard)
A wrapper for the + canInitWithPasteboard: Objective-C class 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