ImageObserver, MenuContainer, Serializable, Accessible, SwingConstants
@JavaBean(defaultProperty="UI", description="A component that supports selecting a integer value from a range.") public class JSlider extends JComponent implements SwingConstants, Accessible
 The slider can show both major tick marks, and minor tick marks between the major ones. The number of values between the tick marks is controlled with setMajorTickSpacing and setMinorTickSpacing. Painting of tick marks is controlled by setPaintTicks. 
 Sliders can also print text labels at regular intervals (or at arbitrary locations) along the slider track. Painting of labels is controlled by setLabelTable and setPaintLabels. 
For further information and examples see How to Use Sliders, a section in The Java Tutorial.
Warning: Swing is not thread safe. For more information see Swing's Threading Policy.
 Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans has been added to the java.beans package. Please see XMLEncoder.
| Modifier and Type | Class | Description | 
|---|---|---|
| protected class  | JSlider.AccessibleJSlider | This class implements accessibility support for the  JSliderclass. | 
JComponent.AccessibleJComponent
Container.AccessibleAWTContainer
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy
| Modifier and Type | Field | Description | 
|---|---|---|
| protected ChangeEvent | changeEvent | Only one  ChangeEventis needed per slider instance since the event's only (read-only) state is the source property. | 
| protected ChangeListener | changeListener | The changeListener (no suffix) is the listener we add to the slider's model. | 
| protected int | majorTickSpacing | The number of values between the major tick marks -- the larger marks that break up the minor tick marks. | 
| protected int | minorTickSpacing | The number of values between the minor tick marks -- the smaller marks that occur between the major tick marks. | 
| protected int | orientation | Whether the slider is horizontal or vertical The default is horizontal. | 
| protected BoundedRangeModel | sliderModel | The data model that handles the numeric maximum value, minimum value, and current-position value for the slider. | 
| protected boolean | snapToTicks | If true, the knob (and the data value it represents) resolve to the closest tick mark next to where the user positioned the knob. | 
listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
accessibleContext, BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST
| Constructor | Description | 
|---|---|
| JSlider() | Creates a horizontal slider with the range 0 to 100 and an initial value of 50. | 
| JSlider | Creates a slider using the specified orientation with the range  0to100and an initial value of50. | 
| JSlider | Creates a horizontal slider using the specified min and max with an initial value equal to the average of the min plus max. | 
| JSlider | Creates a horizontal slider using the specified min, max and value. | 
| JSlider | Creates a slider with the specified orientation and the specified minimum, maximum, and initial values. | 
| JSlider | Creates a horizontal slider using the specified BoundedRangeModel. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| void | addChangeListener | Adds a ChangeListener to the slider. | 
| protected ChangeListener | createChangeListener() | Subclasses that want to handle  ChangeEvents from the model differently can override this to return an instance of a customChangeListenerimplementation. | 
| Hashtable | createStandardLabels | Creates a  Hashtableof numerical text labels, starting at the slider minimum, and using the increment specified. | 
| Hashtable | createStandardLabels | Creates a  Hashtableof numerical text labels, starting at the starting point specified, and using the increment specified. | 
| protected void | fireStateChanged() | Send a  ChangeEvent, whose source is thisJSlider, to allChangeListeners that have registered interest inChangeEvents. | 
| AccessibleContext | getAccessibleContext() | Gets the AccessibleContext associated with this JSlider. | 
| ChangeListener[] | getChangeListeners() | Returns an array of all the  ChangeListeners added to this JSlider with addChangeListener(). | 
| int | getExtent() | Returns the "extent" from the  BoundedRangeModel. | 
| boolean | getInverted() | Returns true if the value-range shown for the slider is reversed, | 
| Dictionary | getLabelTable() | Returns the dictionary of what labels to draw at which values. | 
| int | getMajorTickSpacing() | This method returns the major tick spacing. | 
| int | getMaximum() | Returns the maximum value supported by the slider from the  BoundedRangeModel. | 
| int | getMinimum() | Returns the minimum value supported by the slider from the  BoundedRangeModel. | 
| int | getMinorTickSpacing() | This method returns the minor tick spacing. | 
| BoundedRangeModel | getModel() | Returns the  BoundedRangeModelthat handles the slider's three fundamental properties: minimum, maximum, value. | 
| int | getOrientation() | Return this slider's vertical or horizontal orientation. | 
| boolean | getPaintLabels() | Tells if labels are to be painted. | 
| boolean | getPaintTicks() | Tells if tick marks are to be painted. | 
| boolean | getPaintTrack() | Tells if the track (area the slider slides in) is to be painted. | 
| boolean | getSnapToTicks() | Returns true if the knob (and the data value it represents) resolve to the closest tick mark next to where the user positioned the knob. | 
| SliderUI | getUI() | Gets the UI object which implements the L&F for this component. | 
| String | getUIClassID() | Returns the name of the L&F class that renders this component. | 
| int | getValue() | Returns the slider's current value from the  BoundedRangeModel. | 
| boolean | getValueIsAdjusting() | Returns the  valueIsAdjustingproperty from the model. | 
| boolean | imageUpdate | Repaints the component when the image has changed. | 
| protected String | paramString() | Returns a string representation of this JSlider. | 
| void | removeChangeListener | Removes a ChangeListener from the slider. | 
| void | setExtent | Sets the size of the range "covered" by the knob. | 
| void | setFont | Sets the font for this component. | 
| void | setInverted | Specify true to reverse the value-range shown for the slider and false to put the value range in the normal order. | 
| void | setLabelTable | Used to specify what label will be drawn at any given value. | 
| void | setMajorTickSpacing | This method sets the major tick spacing. | 
| void | setMaximum | Sets the slider's maximum value to  maximum. | 
| void | setMinimum | Sets the slider's minimum value to  minimum. | 
| void | setMinorTickSpacing | This method sets the minor tick spacing. | 
| void | setModel | Sets the  BoundedRangeModelthat handles the slider's three fundamental properties: minimum, maximum, value. | 
| void | setOrientation | Set the slider's orientation to either  SwingConstants.VERTICALorSwingConstants.HORIZONTAL. | 
| void | setPaintLabels | Determines whether labels are painted on the slider. | 
| void | setPaintTicks | Determines whether tick marks are painted on the slider. | 
| void | setPaintTrack | Determines whether the track is painted on the slider. | 
| void | setSnapToTicks | Specifying true makes the knob (and the data value it represents) resolve to the closest tick mark next to where the user positioned the knob. | 
| void | setUI | Sets the UI object which implements the L&F for this component. | 
| void | setValue | Sets the slider's current value to  n. | 
| void | setValueIsAdjusting | Sets the model's  valueIsAdjustingproperty. | 
| protected void | updateLabelUIs() | Updates the UIs for the labels in the label table by calling  updateUIon each label. | 
| void | updateUI() | Resets the UI property to a value from the current look and feel. | 
addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update
add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree
action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, requestFocus, requestFocus, requestFocusInWindow, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setMixingCutoutShape, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
protected BoundedRangeModel sliderModel
protected int majorTickSpacing
protected int minorTickSpacing
protected boolean snapToTicks
protected int orientation
protected ChangeListener changeListener
ChangeListener returned from createChangeListener, which by default just forwards events to ChangeListeners (if any) added directly to the slider.protected transient ChangeEvent changeEvent
ChangeEvent is needed per slider instance since the event's only (read-only) state is the source property. The source of events generated here is always "this". The event is lazily created the first time that an event notification is fired.public JSlider()
public JSlider(int orientation)
0 to 100 and an initial value of 50. The orientation can be either SwingConstants.VERTICAL or SwingConstants.HORIZONTAL.orientation - the orientation of the sliderIllegalArgumentException - if orientation is not one of VERTICAL, HORIZONTAL
public JSlider(int min, int max)
 The BoundedRangeModel that holds the slider's data handles any issues that may arise from improperly setting the minimum and maximum values on the slider. See the BoundedRangeModel documentation for details.
min - the minimum value of the slidermax - the maximum value of the sliderpublic JSlider(int min, int max, int value)
 The BoundedRangeModel that holds the slider's data handles any issues that may arise from improperly setting the minimum, initial, and maximum values on the slider. See the BoundedRangeModel documentation for details.
min - the minimum value of the slidermax - the maximum value of the slidervalue - the initial value of the sliderpublic JSlider(int orientation, int min, int max, int value)
SwingConstants.VERTICAL or SwingConstants.HORIZONTAL.  The BoundedRangeModel that holds the slider's data handles any issues that may arise from improperly setting the minimum, initial, and maximum values on the slider. See the BoundedRangeModel documentation for details.
orientation - the orientation of the slidermin - the minimum value of the slidermax - the maximum value of the slidervalue - the initial value of the sliderIllegalArgumentException - if orientation is not one of VERTICAL, HORIZONTAL
public JSlider(BoundedRangeModel brm)
brm - a BoundedRangeModel for the sliderpublic SliderUI getUI()
getUI in class JComponent
@BeanProperty(hidden=true, visualUpdate=true, description="The UI object that implements the slider\'s LookAndFeel.") public void setUI(SliderUI ui)
ui - the SliderUI L&F objectpublic void updateUI()
updateUI in class JComponent
@BeanProperty(bound=false) public String getUIClassID()
getUIClassID in class JComponent
protected ChangeListener createChangeListener()
ChangeEvents from the model differently can override this to return an instance of a custom ChangeListener implementation. The default ChangeListener simply calls the fireStateChanged method to forward ChangeEvents to the ChangeListeners that have been added directly to the slider.ChangeListener
public void addChangeListener(ChangeListener l)
l - the ChangeListener to addpublic void removeChangeListener(ChangeListener l)
l - the ChangeListener to remove@BeanProperty(bound=false) public ChangeListener[] getChangeListeners()
ChangeListeners added to this JSlider with addChangeListener().ChangeListeners added or an empty array if no listeners have been addedprotected void fireStateChanged()
ChangeEvent, whose source is this JSlider, to all ChangeListeners that have registered interest in ChangeEvents. This method is called each time a ChangeEvent is received from the model.  The event instance is created if necessary, and stored in changeEvent.
public BoundedRangeModel getModel()
BoundedRangeModel that handles the slider's three fundamental properties: minimum, maximum, value.@BeanProperty(description="The sliders BoundedRangeModel.") public void setModel(BoundedRangeModel newModel)
BoundedRangeModel that handles the slider's three fundamental properties: minimum, maximum, value.  Attempts to pass a null model to this method result in undefined behavior, and, most likely, exceptions.
newModel - the new, non-null BoundedRangeModel to usepublic int getValue()
BoundedRangeModel.@BeanProperty(bound=false, preferred=true, description="The sliders current value.") public void setValue(int n)
n. This method forwards the new value to the model.  The data model (an instance of BoundedRangeModel) handles any mathematical issues arising from assigning faulty values. See the BoundedRangeModel documentation for details. 
If the new value is different from the previous value, all change listeners are notified.
n - the new valuepublic int getMinimum()
BoundedRangeModel.@BeanProperty(preferred=true, description="The sliders minimum value.") public void setMinimum(int minimum)
minimum. This method forwards the new minimum value to the model.  The data model (an instance of BoundedRangeModel) handles any mathematical issues arising from assigning faulty values. See the BoundedRangeModel documentation for details. 
If the new minimum value is different from the previous minimum value, all change listeners are notified.
minimum - the new minimumpublic int getMaximum()
BoundedRangeModel.@BeanProperty(preferred=true, description="The sliders maximum value.") public void setMaximum(int maximum)
maximum. This method forwards the new maximum value to the model.  The data model (an instance of BoundedRangeModel) handles any mathematical issues arising from assigning faulty values. See the BoundedRangeModel documentation for details. 
If the new maximum value is different from the previous maximum value, all change listeners are notified.
maximum - the new maximumpublic boolean getValueIsAdjusting()
valueIsAdjusting property from the model. For details on how this is used, see the setValueIsAdjusting documentation.valueIsAdjusting property@BeanProperty(bound=false, expert=true, description="True if the slider knob is being dragged.") public void setValueIsAdjusting(boolean b)
valueIsAdjusting property. Slider look and feel implementations should set this property to true when a knob drag begins, and to false when the drag ends.b - the new value for the valueIsAdjusting propertypublic int getExtent()
BoundedRangeModel. This represents the range of values "covered" by the knob.@BeanProperty(bound=false, expert=true, description="Size of the range covered by the knob.") public void setExtent(int extent)
 The data model (an instance of BoundedRangeModel) handles any mathematical issues arising from assigning faulty values. See the BoundedRangeModel documentation for details. 
If the new extent value is different from the previous extent value, all change listeners are notified.
extent - the new extentpublic int getOrientation()
SwingConstants.VERTICAL or SwingConstants.HORIZONTAL
@BeanProperty(preferred=true, visualUpdate=true, enumerationValues={"JSlider.VERTICAL","JSlider.HORIZONTAL"}, description="Set the scrollbars orientation to either VERTICAL or HORIZONTAL.") public void setOrientation(int orientation) SwingConstants.VERTICAL or SwingConstants.HORIZONTAL.orientation - HORIZONTAL or VERTICAL
IllegalArgumentException - if orientation is not one of VERTICAL, HORIZONTAL
public void setFont(Font font)
setFont in class JComponent
font - the desired Font for this componentpublic boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)
imageUpdate method of an ImageObserver is called when more information about an image which had been previously requested using an asynchronous routine such as the drawImage method of Graphics becomes available. See the definition of imageUpdate for more information on this method and its arguments.  The imageUpdate method of Component incrementally draws an image on the component as more of the bits of the image are available. 
 If the system property awt.image.incrementaldraw is missing or has the value true, the image is incrementally drawn. If the system property has any other value, then the image is not drawn until it has been completely loaded. 
 Also, if incremental drawing is in effect, the value of the system property awt.image.redrawrate is interpreted as an integer to give the maximum redraw rate, in milliseconds. If the system property is missing or cannot be interpreted as an integer, the redraw rate is once every 100ms. 
 The interpretation of the x, y, width, and height arguments depends on the value of the infoflags argument.
imageUpdate in interface ImageObserver
imageUpdate in class Component
img - the image being observedinfoflags - see imageUpdate for more informationx - the x coordinatey - the y coordinatew - the widthh - the heightfalse if the infoflags indicate that the image is completely loaded; true otherwise.public Dictionary getLabelTable()
Dictionary containing labels and where to draw them@BeanProperty(hidden=true, visualUpdate=true, description="Specifies what labels will be drawn for any given value.") public void setLabelTable(Dictionary labels)
{ Integer value, java.swing.JComponent label }.  An easy way to generate a standard table of value labels is by using the createStandardLabels method. 
 Once the labels have been set, this method calls updateLabelUIs(). Note that the labels are only painted if the paintLabels property is true.
labels - new Dictionary of labels, or null to remove all labelsprotected void updateLabelUIs()
updateUI on each label. The UIs are updated from the current look and feel. The labels are also set to their preferred size.public Hashtable<Integer,JComponent> createStandardLabels(int increment)
Hashtable of numerical text labels, starting at the slider minimum, and using the increment specified. For example, if you call createStandardLabels( 10 ) and the slider minimum is zero, then labels will be created for the values 0, 10, 20, 30, and so on.  For the labels to be drawn on the slider, the returned Hashtable must be passed into setLabelTable, and setPaintLabels must be set to true. 
 For further details on the makeup of the returned Hashtable, see the setLabelTable documentation.
increment - distance between labels in the generated hashtableHashtable of labelsIllegalArgumentException - if increment is less than or equal to zeropublic Hashtable<Integer,JComponent> createStandardLabels(int increment, int start)
Hashtable of numerical text labels, starting at the starting point specified, and using the increment specified. For example, if you call createStandardLabels( 10, 2 ), then labels will be created for the values 2, 12, 22, 32, and so on.  For the labels to be drawn on the slider, the returned Hashtable must be passed into setLabelTable, and setPaintLabels must be set to true. 
 For further details on the makeup of the returned Hashtable, see the setLabelTable documentation.
increment - distance between labels in the generated hashtablestart - value at which the labels will beginHashtable of labelsIllegalArgumentException - if start is out of range, or if increment is less than or equal to zeropublic boolean getInverted()
@BeanProperty(visualUpdate=true, description="If true reverses the slider values from their normal order") public void setInverted(boolean b)
ComponentOrientation property. Normal (non-inverted) horizontal sliders with a ComponentOrientation value of LEFT_TO_RIGHT have their maximum on the right. Normal horizontal sliders with a ComponentOrientation value of RIGHT_TO_LEFT have their maximum on the left. Normal vertical sliders have their maximum on the top. These labels are reversed when the slider is inverted.  By default, the value of this property is false.
b - true to reverse the slider values from their normal orderpublic int getMajorTickSpacing()
@BeanProperty(visualUpdate=true, description="Sets the number of values between major tick marks.") public void setMajorTickSpacing(int n)
 In order for major ticks to be painted, setPaintTicks must be set to true. 
 This method will also set up a label table for you. If there is not already a label table, and the major tick spacing is > 0, and getPaintLabels returns true, a standard label table will be generated (by calling createStandardLabels) with labels at the major tick marks. For the example above, you would get text labels: "0", "10", "20", "30", "40", "50". The label table is then set on the slider by calling setLabelTable.
n - new value for the majorTickSpacing propertypublic int getMinorTickSpacing()
@BeanProperty(visualUpdate=true, description="Sets the number of values between minor tick marks.") public void setMinorTickSpacing(int n)
 In order for minor ticks to be painted, setPaintTicks must be set to true.
n - new value for the minorTickSpacing propertypublic boolean getSnapToTicks()
@BeanProperty(description="If true snap the knob to the nearest tick mark.") public void setSnapToTicks(boolean b)
false.b - true to snap the knob to the nearest tick markpublic boolean getPaintTicks()
@BeanProperty(visualUpdate=true, description="If true tick marks are painted on the slider.") public void setPaintTicks(boolean b)
false.b - whether or not tick marks should be paintedpublic boolean getPaintTrack()
@BeanProperty(visualUpdate=true, description="If true, the track is painted on the slider.") public void setPaintTrack(boolean b)
true. It is up to the look and feel to honor this property, some may choose to ignore it.b - whether or not to paint the slider trackpublic boolean getPaintLabels()
@BeanProperty(visualUpdate=true, description="If true labels are painted on the slider.") public void setPaintLabels(boolean b)
 This method will also set up a label table for you. If there is not already a label table, and the major tick spacing is > 0, a standard label table will be generated (by calling createStandardLabels) with labels at the major tick marks. The label table is then set on the slider by calling setLabelTable. 
 By default, this property is false.
b - whether or not to paint labelsprotected String paramString()
null.paramString in class JComponent
@BeanProperty(bound=false) public AccessibleContext getAccessibleContext()
getAccessibleContext in interface Accessible
getAccessibleContext in class Component
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/JSlider.html