java.awt.event
public class AdjustmentEvent extends AWTEvent
Adjustable
,
AdjustmentListener
,
Serialized FormModifier and Type | Field and Description |
---|---|
static int |
ADJUSTMENT_FIRST
Marks the first integer id for the range of adjustment event ids.
|
static int |
ADJUSTMENT_LAST
Marks the last integer id for the range of adjustment event ids.
|
static int |
ADJUSTMENT_VALUE_CHANGED
The adjustment value changed event.
|
static int |
BLOCK_DECREMENT
The block decrement adjustment type.
|
static int |
BLOCK_INCREMENT
The block increment adjustment type.
|
static int |
TRACK
The absolute tracking adjustment type.
|
static int |
UNIT_DECREMENT
The unit decrement adjustment type.
|
static int |
UNIT_INCREMENT
The unit increment adjustment type.
|
ACTION_EVENT_MASK, ADJUSTMENT_EVENT_MASK, COMPONENT_EVENT_MASK, consumed, CONTAINER_EVENT_MASK, FOCUS_EVENT_MASK, HIERARCHY_BOUNDS_EVENT_MASK, HIERARCHY_EVENT_MASK, id, INPUT_METHOD_EVENT_MASK, INVOCATION_EVENT_MASK, ITEM_EVENT_MASK, KEY_EVENT_MASK, MOUSE_EVENT_MASK, MOUSE_MOTION_EVENT_MASK, MOUSE_WHEEL_EVENT_MASK, PAINT_EVENT_MASK, RESERVED_ID_MAX, TEXT_EVENT_MASK, WINDOW_EVENT_MASK, WINDOW_FOCUS_EVENT_MASK, WINDOW_STATE_EVENT_MASK
source
Constructor and Description |
---|
AdjustmentEvent(Adjustable source,
int id,
int type,
int value)
Constructs an
AdjustmentEvent object with the
specified Adjustable source, event type,
adjustment type, and value. |
AdjustmentEvent(Adjustable source,
int id,
int type,
int value,
boolean isAdjusting)
Constructs an
AdjustmentEvent object with the
specified Adjustable source, event type, adjustment type, and value. |
Modifier and Type | Method and Description |
---|---|
Adjustable |
getAdjustable()
Returns the
Adjustable object where this event originated. |
int |
getAdjustmentType()
Returns the type of adjustment which caused the value changed
event.
|
int |
getValue()
Returns the current value in the adjustment event.
|
boolean |
getValueIsAdjusting()
Returns
true if this is one of multiple
adjustment events. |
String |
paramString()
Returns a string representing the state of this
Event . |
getSource
public static final int ADJUSTMENT_FIRST
public static final int ADJUSTMENT_LAST
public static final int ADJUSTMENT_VALUE_CHANGED
public static final int UNIT_INCREMENT
public static final int UNIT_DECREMENT
public static final int BLOCK_DECREMENT
public static final int BLOCK_INCREMENT
public static final int TRACK
public AdjustmentEvent(Adjustable source, int id, int type, int value)
AdjustmentEvent
object with the
specified Adjustable
source, event type,
adjustment type, and value.
Note that passing in an invalid id
results in
unspecified behavior. This method throws an
IllegalArgumentException
if source
is null
.
source
- the Adjustable
object where the
event originatedid
- the event typetype
- the adjustment typevalue
- the current value of the adjustmentIllegalArgumentException
- if source
is nullpublic AdjustmentEvent(Adjustable source, int id, int type, int value, boolean isAdjusting)
AdjustmentEvent
object with the
specified Adjustable source, event type, adjustment type, and value.
Note that passing in an invalid id
results in
unspecified behavior. This method throws an
IllegalArgumentException
if source
is null
.
source
- the Adjustable
object where the
event originatedid
- the event typetype
- the adjustment typevalue
- the current value of the adjustmentisAdjusting
- true
if the event is one
of a series of multiple adjusting events,
otherwise false
IllegalArgumentException
- if source
is nullpublic Adjustable getAdjustable()
Adjustable
object where this event originated.Adjustable
object where this event originatedpublic int getValue()
public int getAdjustmentType()
public boolean getValueIsAdjusting()
true
if this is one of multiple
adjustment events.true
if this is one of multiple
adjustment events, otherwise returns false
public String paramString()
AWTEvent
Event
.
This method is intended to be used only for debugging purposes, and the
content and format of the returned string may vary between
implementations. The returned string may be empty but may not be
null
.paramString
in class AWTEvent
Submit a bug or feature Copyright © 1993, 2017, Oracle and/or its affiliates. All rights reserved.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.