Uses of Interface
java.awt.Adjustable

Packages that use Adjustable
java.awt   
java.awt.event   
 

Uses of Adjustable in java.awt
 

Classes in java.awt that implement Adjustable
 class Scrollbar
          The Scrollbar class embodies a scroll bar, a familiar user-interface object.
(package private)  class ScrollPaneAdjustable
           
 

Methods in java.awt that return Adjustable
 Adjustable ScrollPane.getVAdjustable()
          Returns the Adjustable object which represents the state of the vertical scrollbar.
 Adjustable ScrollPane.getHAdjustable()
          Returns the Adjustable object which represents the state of the horizontal scrollbar.
 

Uses of Adjustable in java.awt.event
 

Fields in java.awt.event declared as Adjustable
(package private)  Adjustable AdjustmentEvent.adjustable
          The adjustable object that fired the event.
 

Methods in java.awt.event that return Adjustable
 Adjustable AdjustmentEvent.getAdjustable()
          Returns the Adjustable object where this event originated.
 

Constructors in java.awt.event with parameters of type Adjustable
AdjustmentEvent.AdjustmentEvent(Adjustable source, int id, int type, int value)
          Constructs a AdjustmentEvent object with the specified Adjustable source, event type, adjustment type, and value.