All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ProgressIndicator

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

public class ProgressIndicator
extends View
This class wraps the Objective-C class NSProgressIndicator.


Constructor Index

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

Method Index

 o animate(Object)
A wrapper for the - animate: Objective-C instance method.
 o animationDelay()
A wrapper for the - animationDelay Objective-C instance method.
 o doubleValue()
A wrapper for the - doubleValue Objective-C instance method.
 o incrementBy(double)
A wrapper for the - incrementBy: Objective-C instance method.
 o isBezeled()
A wrapper for the - isBezeled Objective-C instance method.
 o isIndeterminate()
A wrapper for the - isIndeterminate Objective-C instance method.
 o maxValue()
A wrapper for the - maxValue Objective-C instance method.
 o minValue()
A wrapper for the - minValue Objective-C instance method.
 o setAnimationDelay(double)
A wrapper for the - setAnimationDelay: Objective-C instance method.
 o setBezeled(boolean)
A wrapper for the - setBezeled: Objective-C instance method.
 o setDoubleValue(double)
A wrapper for the - setDoubleValue: Objective-C instance method.
 o setIndeterminate(boolean)
A wrapper for the - setIndeterminate: Objective-C instance method.
 o setMaxValue(double)
A wrapper for the - setMaxValue: Objective-C instance method.
 o setMinValue(double)
A wrapper for the - setMinValue: Objective-C instance method.
 o setUsesThreadedAnimation(boolean)
A wrapper for the - setUsesThreadedAnimation: Objective-C instance method.
 o startAnimation(Object)
A wrapper for the - startAnimation: Objective-C instance method.
 o stopAnimation(Object)
A wrapper for the - stopAnimation: Objective-C instance method.
 o usesThreadedAnimation()
A wrapper for the - usesThreadedAnimation Objective-C instance method.

Constructors

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

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

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

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

Methods

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

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

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

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

 o doubleValue
 public native double doubleValue()
A wrapper for the - doubleValue Objective-C instance method.

 o setDoubleValue
 public native void setDoubleValue(double doubleValue)
A wrapper for the - setDoubleValue: Objective-C instance method.

 o incrementBy
 public native void incrementBy(double delta)
A wrapper for the - incrementBy: Objective-C instance method.

 o minValue
 public native double minValue()
A wrapper for the - minValue Objective-C instance method.

 o maxValue
 public native double maxValue()
A wrapper for the - maxValue Objective-C instance method.

 o setMinValue
 public native void setMinValue(double newMinimum)
A wrapper for the - setMinValue: Objective-C instance method.

 o setMaxValue
 public native void setMaxValue(double newMaximum)
A wrapper for the - setMaxValue: Objective-C instance method.

 o animationDelay
 public native double animationDelay()
A wrapper for the - animationDelay Objective-C instance method.

 o setAnimationDelay
 public native void setAnimationDelay(double delay)
A wrapper for the - setAnimationDelay: Objective-C instance method.

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

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

 o startAnimation
 public native void startAnimation(Object sender)
A wrapper for the - startAnimation: Objective-C instance method.

 o stopAnimation
 public native void stopAnimation(Object sender)
A wrapper for the - stopAnimation: Objective-C instance method.

 o animate
 public native void animate(Object sender)
A wrapper for the - animate: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index