Set all the values at once by using the model for JSlider in Java

Description

The following code shows how to set all the values at once by using the model for JSlider.

Example


/* w  w  w. ja va  2s  . co  m*/
import javax.swing.JFrame;
import javax.swing.JSlider;

public class Main {
  public static void main(String[] args) {
    JFrame f = new JFrame();
    int initValue = 20;
    int minimum = 10;
    int maximum = 100;

    JSlider slider = new JSlider(JSlider.VERTICAL, minimum, maximum, initValue);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   

    int newValue = 2;
    int newExtent = 10;
    int newMin = 0;
    int newMax = 10;
    slider.getModel().setRangeProperties(newValue, newExtent, newMin, newMax,
        false);
    
    f.add(slider);
    f.pack();
    f.setLocationRelativeTo(null);
    f.setVisible(true);
  }
}

The code above generates the following result.

Set all the values at once by using the model for JSlider in Java




















Home »
  Java Tutorial »
    Swing »




Action
Border
Color Chooser
Drag and Drop
Event
Font Chooser
JButton
JCheckBox
JComboBox
JDialog
JEditorPane
JFileChooser
JFormattedText
JFrame
JLabel
JList
JOptionPane
JPasswordField
JProgressBar
JRadioButton
JScrollBar
JScrollPane
JSeparator
JSlider
JSpinner
JSplitPane
JTabbedPane
JTable
JTextArea
JTextField
JTextPane
JToggleButton
JToolTip
JTree
Layout
Menu
Timer