Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.EventObject java.awt.AWTEvent java.awt.event.AdjustmentEvent
public class AdjustmentEvent extends AWTEvent
The adjustment event emitted by Adjustable objects like
Scrollbar
and ScrollPane
.
When the user changes the value of the scrolling component,
it receives an instance of AdjustmentEvent
.
An unspecified behavior will be caused if the id
parameter
of any particular AdjustmentEvent
instance is not
in the range from ADJUSTMENT_FIRST
to ADJUSTMENT_LAST
.
The type
of any AdjustmentEvent
instance takes one of the following
values:
UNIT_INCREMENT
UNIT_DECREMENT
BLOCK_INCREMENT
BLOCK_DECREMENT
TRACK
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. |
Fields inherited from class java.util.EventObject |
---|
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 . |
Methods inherited from class java.awt.AWTEvent |
---|
consume, getID, isConsumed, setSource, toString |
Methods inherited from class java.util.EventObject |
---|
getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
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
Constructor Detail |
---|
public AdjustmentEvent(Adjustable source, int id, int type, int value)
AdjustmentEvent
object with the
specified Adjustable
source, event type,
adjustment type, and value.
This method throws an
IllegalArgumentException
if source
is null
.
source
- The Adjustable
object where the
event originatedid
- An integer indicating the type of event.
For information on allowable values, see
the class description for AdjustmentEvent
type
- An integer indicating the adjustment type.
For information on allowable values, see
the class description for AdjustmentEvent
value
- The current value of the adjustmentIllegalArgumentException
- if source
is nullEventObject.getSource()
,
AWTEvent.getID()
,
getAdjustmentType()
,
getValue()
public AdjustmentEvent(Adjustable source, int id, int type, int value, boolean isAdjusting)
AdjustmentEvent
object with the
specified Adjustable source, event type, adjustment type, and value.
This method throws an
IllegalArgumentException
if source
is null
.
source
- The Adjustable
object where the
event originatedid
- An integer indicating the type of event.
For information on allowable values, see
the class description for AdjustmentEvent
type
- An integer indicating the adjustment type.
For information on allowable values, see
the class description for AdjustmentEvent
value
- The current value of the adjustmentisAdjusting
- A boolean that equals true
if the event is one
of a series of multiple adjusting events,
otherwise false
IllegalArgumentException
- if source
is nullEventObject.getSource()
,
AWTEvent.getID()
,
getAdjustmentType()
,
getValue()
,
getValueIsAdjusting()
Method Detail |
---|
public 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
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.