Package Summary  Overview Summary

class:AdjustmentEvent [NONE]

All Implemented Interfaces:
Serializable

public class AdjustmentEventextends 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
Assigning the value different from listed above will cause an unspecified behavior.

Since:
1.1
See Also:

field:ADJUSTMENT_FIRST [NONE]

  • ADJUSTMENT_FIRST

    public static final  int ADJUSTMENT_FIRST
    Marks the first integer id for the range of adjustment event ids.
    See Also:
  • field:ADJUSTMENT_LAST [NONE]

    ADJUSTMENT_LAST

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

    field:ADJUSTMENT_VALUE_CHANGED [NONE]

    ADJUSTMENT_VALUE_CHANGED

    public static final  int ADJUSTMENT_VALUE_CHANGED
    The adjustment value changed event.
    See Also:

    field:UNIT_INCREMENT [NONE]

    UNIT_INCREMENT

    @Nativepublic static final  int UNIT_INCREMENT
    The unit increment adjustment type.
    See Also:

    field:UNIT_DECREMENT [NONE]

    UNIT_DECREMENT

    @Nativepublic static final  int UNIT_DECREMENT
    The unit decrement adjustment type.
    See Also:

    field:BLOCK_DECREMENT [NONE]

    BLOCK_DECREMENT

    @Nativepublic static final  int BLOCK_DECREMENT
    The block decrement adjustment type.
    See Also:

    field:BLOCK_INCREMENT [NONE]

    BLOCK_INCREMENT

    @Nativepublic static final  int BLOCK_INCREMENT
    The block increment adjustment type.
    See Also:

    field:TRACK [NONE]

    TRACK

    @Nativepublic static final  int TRACK
    The absolute tracking adjustment type.
    See Also:

    constructor:AdjustmentEvent(java.awt.Adjustable,int,int,int) [NONE]

  • AdjustmentEvent

    public AdjustmentEvent (Adjustable source, int id, int type, int value)
    Constructs an AdjustmentEvent object with the specified Adjustable source, event type, adjustment type, and value.

    This method throws an IllegalArgumentException if source is null.

    Parameters:
    source - The Adjustable object where the event originated
    id - 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 adjustment
    Throws:
    IllegalArgumentException - if source is null
    See Also:
  • constructor:AdjustmentEvent(java.awt.Adjustable,int,int,int,boolean) [NONE]

    AdjustmentEvent

    public 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.

    This method throws an IllegalArgumentException if source is null.

    Parameters:
    source - The Adjustable object where the event originated
    id - 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 adjustment
    isAdjusting - A boolean that equals true if the event is one of a series of multiple adjusting events, otherwise false
    Throws:
    IllegalArgumentException - if source is null
    Since:
    1.4
    See Also:

    method:getAdjustable() [NONE]

  • getAdjustable

    public Adjustable getAdjustable()
    Returns the Adjustable object where this event originated.
    Returns:
    the Adjustable object where this event originated
  • method:getValue() [NONE]

    getValue

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

    method:getAdjustmentType() [NONE]

    getAdjustmentType

    public int getAdjustmentType()
    Returns the type of adjustment which caused the value changed event. It will have one of the following values:
    Returns:
    one of the adjustment values listed above

    method:getValueIsAdjusting() [NONE]

    getValueIsAdjusting

    public boolean getValueIsAdjusting()
    Returns true if this is one of multiple adjustment events.
    Returns:
    true if this is one of multiple adjustment events, otherwise returns false
    Since:
    1.4

    method:paramString() [NONE]

    paramString

    public String paramString()
    Description copied from class: AWTEvent
    Returns a string representing the state of this 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.
    Overrides:
    paramString in class AWTEvent
    Returns:
    a string representation of this event

    © 2023 Oracle Corporation and/or its affiliates