Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Set the value; the new value will be forced into the bars range

import javax.swing.JSlider; public class Main {   public static void main(String[] argv) throws Exception {     JSlider slider = new JSlider();     int newValue = 33;     slider.setValue(newValue);   } }