The interface for objects which have an adjustable numeric value contained within a bounded range of values.
The interface for objects which have an adjustable numeric value contained within a bounded range of values.
(add-adjustment-listener this l)
Adds a listener to receive adjustment events when the value of the adjustable object changes.
l - the listener to receive events - java.awt.event.AdjustmentListener
Adds a listener to receive adjustment events when the value of the adjustable object changes. l - the listener to receive events - `java.awt.event.AdjustmentListener`
(get-block-increment this)
Gets the block value increment for the adjustable object.
returns: the block value increment for the adjustable object - int
Gets the block value increment for the adjustable object. returns: the block value increment for the adjustable object - `int`
(get-maximum this)
Gets the maximum value of the adjustable object.
returns: the maximum value of the adjustable object - int
Gets the maximum value of the adjustable object. returns: the maximum value of the adjustable object - `int`
(get-minimum this)
Gets the minimum value of the adjustable object.
returns: the minimum value of the adjustable object - int
Gets the minimum value of the adjustable object. returns: the minimum value of the adjustable object - `int`
(get-orientation this)
Gets the orientation of the adjustable object.
returns: the orientation of the adjustable object;
either HORIZONTAL, VERTICAL,
or NO_ORIENTATION - int
Gets the orientation of the adjustable object. returns: the orientation of the adjustable object; either HORIZONTAL, VERTICAL, or NO_ORIENTATION - `int`
(get-unit-increment this)
Gets the unit value increment for the adjustable object.
returns: the unit value increment for the adjustable object - int
Gets the unit value increment for the adjustable object. returns: the unit value increment for the adjustable object - `int`
(get-value this)
Gets the current value of the adjustable object.
returns: the current value of the adjustable object - int
Gets the current value of the adjustable object. returns: the current value of the adjustable object - `int`
(get-visible-amount this)
Gets the length of the proportional indicator.
returns: the length of the proportional indicator - int
Gets the length of the proportional indicator. returns: the length of the proportional indicator - `int`
(remove-adjustment-listener this l)
Removes an adjustment listener.
l - the listener being removed - java.awt.event.AdjustmentListener
Removes an adjustment listener. l - the listener being removed - `java.awt.event.AdjustmentListener`
(set-block-increment this b)
Sets the block value increment for the adjustable object.
b - the block increment - int
Sets the block value increment for the adjustable object. b - the block increment - `int`
(set-maximum this max)
Sets the maximum value of the adjustable object.
max - the maximum value - int
Sets the maximum value of the adjustable object. max - the maximum value - `int`
(set-minimum this min)
Sets the minimum value of the adjustable object.
min - the minimum value - int
Sets the minimum value of the adjustable object. min - the minimum value - `int`
(set-unit-increment this u)
Sets the unit value increment for the adjustable object.
u - the unit increment - int
Sets the unit value increment for the adjustable object. u - the unit increment - `int`
(set-value this v)
Sets the current value of the adjustable object. If the value supplied is less than minimum or greater than maximum - visibleAmount, then one of those values is substituted, as appropriate.
Calling this method does not fire an AdjustmentEvent.
v - the current value, between minimum and maximum - visibleAmount - int
Sets the current value of the adjustable object. If the value supplied is less than minimum or greater than maximum - visibleAmount, then one of those values is substituted, as appropriate. Calling this method does not fire an AdjustmentEvent. v - the current value, between minimum and maximum - visibleAmount - `int`
(set-visible-amount this v)
Sets the length of the proportional indicator of the adjustable object.
v - the length of the indicator - int
Sets the length of the proportional indicator of the adjustable object. v - the length of the indicator - `int`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close