java.lang.Object
java.awt.ScrollPaneAdjustable
- All Implemented Interfaces:
Adjustable
,Serializable
public class ScrollPaneAdjustable extends Object implements Adjustable, Serializable
This class represents the state of a horizontal or vertical
scrollbar of a
ScrollPane
. Objects of this class are
returned by ScrollPane
methods.- Since:
- 1.4
- See Also:
- Serialized Form
-
Field Summary
-
Method Summary
Modifier and Type Method Description void
addAdjustmentListener(AdjustmentListener l)
Adds the specified adjustment listener to receive adjustment events from thisScrollPaneAdjustable
.AdjustmentListener[]
getAdjustmentListeners()
Returns an array of all the adjustment listeners registered on thisScrollPaneAdjustable
.int
getOrientation()
Returns the orientation of this scrollbar.boolean
getValueIsAdjusting()
Returns true if the value is in the process of changing as a result of actions being taken by the user.String
paramString()
Returns a string representing the state of this scrollbar.void
removeAdjustmentListener(AdjustmentListener l)
Removes the specified adjustment listener so that it no longer receives adjustment events from thisScrollPaneAdjustable
.void
setMaximum(int max)
This method should NOT be called by user code.void
setMinimum(int min)
This method should NOT be called by user code.void
setValue(int v)
Sets the value of this scrollbar to the specified value.void
setValueIsAdjusting(boolean b)
Sets thevalueIsAdjusting
property.void
setVisibleAmount(int v)
This method should NOT be called by user code.String
toString()
Returns a string representation of this scrollbar and its values.Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface java.awt.Adjustable
getBlockIncrement, getMaximum, getMinimum, getUnitIncrement, getValue, getVisibleAmount, setBlockIncrement, setUnitIncrement
-
Method Details
-
getOrientation
public int getOrientation()Returns the orientation of this scrollbar.- Specified by:
getOrientation
in interfaceAdjustable
- Returns:
- the orientation of this scrollbar, either
Adjustable.HORIZONTAL
orAdjustable.VERTICAL
-
setMinimum
public void setMinimum(int min)This method should NOT be called by user code. This method is public for this class to properly implementAdjustable
interface.- Specified by:
setMinimum
in interfaceAdjustable
- Parameters:
min
- the minimum value- Throws:
AWTError
- Always throws an error when called.
-
setMaximum
public void setMaximum(int max)This method should NOT be called by user code. This method is public for this class to properly implementAdjustable
interface.- Specified by:
setMaximum
in interfaceAdjustable
- Parameters:
max
- the maximum value- Throws:
AWTError
- Always throws an error when called.
-
setVisibleAmount
public void setVisibleAmount(int v)This method should NOT be called by user code. This method is public for this class to properly implementAdjustable
interface.- Specified by:
setVisibleAmount
in interfaceAdjustable
- Parameters:
v
- the length of the indicator- Throws:
AWTError
- Always throws an error when called.
-
setValueIsAdjusting
public void setValueIsAdjusting(boolean b)Sets thevalueIsAdjusting
property.- Parameters:
b
- new adjustment-in-progress status- Since:
- 1.4
- See Also:
getValueIsAdjusting()
-
getValueIsAdjusting
public boolean getValueIsAdjusting()Returns true if the value is in the process of changing as a result of actions being taken by the user.- Returns:
- the value of the
valueIsAdjusting
property - See Also:
setValueIsAdjusting(boolean)
-
setValue
public void setValue(int v)Sets the value of this scrollbar to the specified value.If the value supplied is less than the current minimum or greater than the current maximum, then one of those values is substituted, as appropriate.
- Specified by:
setValue
in interfaceAdjustable
- Parameters:
v
- the new value of the scrollbar
-
addAdjustmentListener
Adds the specified adjustment listener to receive adjustment events from thisScrollPaneAdjustable
. Ifl
isnull
, no exception is thrown and no action is performed.Refer to AWT Threading Issues for details on AWT's threading model.
- Specified by:
addAdjustmentListener
in interfaceAdjustable
- Parameters:
l
- the adjustment listener.- See Also:
removeAdjustmentListener(java.awt.event.AdjustmentListener)
,getAdjustmentListeners()
,AdjustmentListener
,AdjustmentEvent
-
removeAdjustmentListener
Removes the specified adjustment listener so that it no longer receives adjustment events from thisScrollPaneAdjustable
. Ifl
isnull
, no exception is thrown and no action is performed.Refer to AWT Threading Issues for details on AWT's threading model.
- Specified by:
removeAdjustmentListener
in interfaceAdjustable
- Parameters:
l
- the adjustment listener.- Since:
- 1.1
- See Also:
addAdjustmentListener(java.awt.event.AdjustmentListener)
,getAdjustmentListeners()
,AdjustmentListener
,AdjustmentEvent
-
getAdjustmentListeners
Returns an array of all the adjustment listeners registered on thisScrollPaneAdjustable
.- Returns:
- all of this
ScrollPaneAdjustable
'sAdjustmentListener
s or an empty array if no adjustment listeners are currently registered - Since:
- 1.4
- See Also:
addAdjustmentListener(java.awt.event.AdjustmentListener)
,removeAdjustmentListener(java.awt.event.AdjustmentListener)
,AdjustmentListener
,AdjustmentEvent
-
toString
Returns a string representation of this scrollbar and its values. -
paramString
Returns a string representing the state of this scrollbar. 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 benull
.- Returns:
- the parameter string of this scrollbar.
-