All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.bulletproof.gui.event.AdjustmentEvent

java.lang.Object
   |
   +----com.bulletproof.gui.GUIEvent
           |
           +----com.bulletproof.gui.event.AdjustmentEvent

public class AdjustmentEvent
extends GUIEvent
The adjustment event emitted by Adjustable objects.

See Also:
Adjustable, AdjustmentListener

Variable Index

 o ADJUSTMENT_FIRST
Marks the first integer id for the range of adjustment event ids.
 o ADJUSTMENT_LAST
Marks the last integer id for the range of adjustment event ids.
 o ADJUSTMENT_VALUE_CHANGED
The adjustment value changed event.
 o BLOCK_DECREMENT
The block decrement adjustment type.
 o BLOCK_INCREMENT
The block increment adjustment type.
 o TRACK
The absolute tracking adjustment type.
 o UNIT_DECREMENT
The unit decrement adjustment type.
 o UNIT_INCREMENT
The unit increment adjustment type.

Constructor Index

 o AdjustmentEvent(Scrollbar, int, int, int)
Constructs a AdjustmentEvent object with the specified Adjustable source, type, and value.

Method Index

 o getAdjustmentType()
Returns the type of adjustment which caused the value changed event.
 o getScrollbar()
Returns the Adjustable object where this event originated.
 o getValue()
Returns the current value in the adjustment event.

Variables

 o ADJUSTMENT_FIRST
 public static final int ADJUSTMENT_FIRST
Marks the first integer id for the range of adjustment event ids.

 o ADJUSTMENT_LAST
 public static final int ADJUSTMENT_LAST
Marks the last integer id for the range of adjustment event ids.

 o ADJUSTMENT_VALUE_CHANGED
 public static final int ADJUSTMENT_VALUE_CHANGED
The adjustment value changed event.

 o UNIT_INCREMENT
 public static final int UNIT_INCREMENT
The unit increment adjustment type.

 o UNIT_DECREMENT
 public static final int UNIT_DECREMENT
The unit decrement adjustment type.

 o BLOCK_DECREMENT
 public static final int BLOCK_DECREMENT
The block decrement adjustment type.

 o BLOCK_INCREMENT
 public static final int BLOCK_INCREMENT
The block increment adjustment type.

 o TRACK
 public static final int TRACK
The absolute tracking adjustment type.

Constructors

 o AdjustmentEvent
 public AdjustmentEvent(Scrollbar source,
                        int id,
                        int type,
                        int value)
Constructs a AdjustmentEvent object with the specified Adjustable source, type, and value.

Parameters:
source - the Adjustable object where the event originated

Methods

 o getScrollbar
 public Scrollbar getScrollbar()
Returns the Adjustable object where this event originated.

 o getValue
 public int getValue()
Returns the current value in the adjustment event.

 o getAdjustmentType
 public int getAdjustmentType()
Returns the type of adjustment which caused the value changed event.

See Also:
UNIT_INCREMENT, UNIT_DECREMENT, BLOCK_INCREMENT, BLOCK_DECREMENT, TRACK

All Packages  Class Hierarchy  This Package  Previous  Next  Index