- 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 aScrollPane
. Objects of this class are returned byScrollPane
methods.- Since:
- 1.4
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface java.awt.Adjustable
HORIZONTAL, NO_ORIENTATION, VERTICAL
-
-
Method Summary
Methods Modifier and Type Method and 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
getBlockIncrement()
Gets the block value increment for the adjustable object.int
getMaximum()
Gets the maximum value of the adjustable object.int
getMinimum()
Gets the minimum value of the adjustable object.int
getOrientation()
Returns the orientation of this scrollbar.int
getUnitIncrement()
Gets the unit value increment for the adjustable object.int
getValue()
Gets the current value of the adjustable object.boolean
getValueIsAdjusting()
Returns true if the value is in the process of changing as a result of actions being taken by the user.int
getVisibleAmount()
Gets the length of the proportional indicator.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
setBlockIncrement(int b)
Sets the block value increment for the adjustable object.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
setUnitIncrement(int u)
Sets the unit value increment for the adjustable object.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.
-
-
-
Method Detail
-
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:
- Always throws an error when called.AWTError
-
getMinimum
public int getMinimum()
Description copied from interface:Adjustable
Gets the minimum value of the adjustable object.- Specified by:
getMinimum
in interfaceAdjustable
- Returns:
- the minimum value of the adjustable object
-
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:
- Always throws an error when called.AWTError
-
getMaximum
public int getMaximum()
Description copied from interface:Adjustable
Gets the maximum value of the adjustable object.- Specified by:
getMaximum
in interfaceAdjustable
- Returns:
- the maximum value of the adjustable object
-
setUnitIncrement
public void setUnitIncrement(int u)
Description copied from interface:Adjustable
Sets the unit value increment for the adjustable object.- Specified by:
setUnitIncrement
in interfaceAdjustable
- Parameters:
u
- the unit increment
-
getUnitIncrement
public int getUnitIncrement()
Description copied from interface:Adjustable
Gets the unit value increment for the adjustable object.- Specified by:
getUnitIncrement
in interfaceAdjustable
- Returns:
- the unit value increment for the adjustable object
-
setBlockIncrement
public void setBlockIncrement(int b)
Description copied from interface:Adjustable
Sets the block value increment for the adjustable object.- Specified by:
setBlockIncrement
in interfaceAdjustable
- Parameters:
b
- the block increment
-
getBlockIncrement
public int getBlockIncrement()
Description copied from interface:Adjustable
Gets the block value increment for the adjustable object.- Specified by:
getBlockIncrement
in interfaceAdjustable
- Returns:
- the block value increment for the adjustable object
-
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:
- Always throws an error when called.AWTError
-
getVisibleAmount
public int getVisibleAmount()
Description copied from interface:Adjustable
Gets the length of the proportional indicator.- Specified by:
getVisibleAmount
in interfaceAdjustable
- Returns:
- the length of the proportional indicator
-
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
-
getValue
public int getValue()
Description copied from interface:Adjustable
Gets the current value of the adjustable object.- Specified by:
getValue
in interfaceAdjustable
- Returns:
- the current value of the adjustable object
-
addAdjustmentListener
public void addAdjustmentListener(AdjustmentListener l)
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
public void removeAdjustmentListener(AdjustmentListener l)
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:
- JDK1.1
- See Also:
addAdjustmentListener(java.awt.event.AdjustmentListener)
,getAdjustmentListeners()
,AdjustmentListener
,AdjustmentEvent
-
getAdjustmentListeners
public AdjustmentListener[] 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
public String toString()
Returns a string representation of this scrollbar and its values.
-
paramString
public String 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.
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/ScrollPaneAdjustable.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.