All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ImageView

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.Control
                                   |
                                   +----com.apple.alpha.app.ImageView

public class ImageView
extends Control
This class wraps the Objective-C class NSImageView.


Constructor Index

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

Method Index

 o image()
A wrapper for the - image Objective-C instance method.
 o imageAlignment()
A wrapper for the - imageAlignment Objective-C instance method.
 o imageFrameStyle()
A wrapper for the - imageFrameStyle Objective-C instance method.
 o imageScaling()
A wrapper for the - imageScaling Objective-C instance method.
 o isEditable()
A wrapper for the - isEditable Objective-C instance method.
 o setEditable(boolean)
A wrapper for the - setEditable: Objective-C instance method.
 o setImage(Image)
A wrapper for the - setImage: Objective-C instance method.
 o setImageAlignment(int)
A wrapper for the - setImageAlignment: Objective-C instance method.
 o setImageFrameStyle(int)
A wrapper for the - setImageFrameStyle: Objective-C instance method.
 o setImageScaling(int)
A wrapper for the - setImageScaling: Objective-C instance method.

Constructors

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

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

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

 o ImageView
 public ImageView(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o image
 public native Image image()
A wrapper for the - image Objective-C instance method.

 o setImage
 public native void setImage(Image newImage)
A wrapper for the - setImage: Objective-C instance method.

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

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

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

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

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

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

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

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index