Liking cljdoc? Tell your friends :D

jdk.awt.Adjustable

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.
raw docstring

add-adjustment-listenerclj

(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`
raw docstring

get-block-incrementclj

(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`
raw docstring

get-maximumclj

(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`
raw docstring

get-minimumclj

(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`
raw docstring

get-orientationclj

(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`
raw docstring

get-unit-incrementclj

(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`
raw docstring

get-valueclj

(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`
raw docstring

get-visible-amountclj

(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`
raw docstring

remove-adjustment-listenerclj

(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`
raw docstring

set-block-incrementclj

(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`
raw docstring

set-maximumclj

(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`
raw docstring

set-minimumclj

(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`
raw docstring

set-unit-incrementclj

(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`
raw docstring

set-valueclj

(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`
raw docstring

set-visible-amountclj

(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`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close