| |
|
| java.awt.AWTEvent java.awt.event.AdjustmentEvent
Constructor Summary | |
public | AdjustmentEvent(Adjustable source, int id, int type, int value) Constructs a AdjustmentEvent object with the specified Adjustable source,
type, and value. |
ADJUSTMENT_FIRST | final public static int ADJUSTMENT_FIRST(Code) | | Marks the first integer id for the range of adjustment event ids.
|
ADJUSTMENT_LAST | final public static int ADJUSTMENT_LAST(Code) | | Marks the last integer id for the range of adjustment event ids.
|
ADJUSTMENT_VALUE_CHANGED | final public static int ADJUSTMENT_VALUE_CHANGED(Code) | | The adjustment value changed event.
|
BLOCK_DECREMENT | final public static int BLOCK_DECREMENT(Code) | | The block decrement adjustment type.
|
BLOCK_INCREMENT | final public static int BLOCK_INCREMENT(Code) | | The block increment adjustment type.
|
TRACK | final public static int TRACK(Code) | | The absolute tracking adjustment type.
|
UNIT_DECREMENT | final public static int UNIT_DECREMENT(Code) | | The unit decrement adjustment type.
|
UNIT_INCREMENT | final public static int UNIT_INCREMENT(Code) | | The unit increment adjustment type.
|
adjustmentType | int adjustmentType(Code) | | |
AdjustmentEvent | public AdjustmentEvent(Adjustable source, int id, int type, int value)(Code) | | Constructs a AdjustmentEvent object with the specified Adjustable source,
type, and value.
Parameters: source - the Adjustable object where the event originated |
getAdjustable | public Adjustable getAdjustable()(Code) | | Returns the Adjustable object where this event originated.
|
getAdjustmentType | public int getAdjustmentType()(Code) | | Returns the type of adjustment which caused the value changed
event.
See Also: UNIT_INCREMENT See Also: UNIT_DECREMENT See Also: BLOCK_INCREMENT See Also: BLOCK_DECREMENT See Also: TRACK |
getValue | public int getValue()(Code) | | Returns the current value in the adjustment event.
|
|
|
|