public class Main { public static void main(String[] argv) throws Exception {
// Create a horizontal slider with min=0, max=100, value=50
JSlider slider = new JSlider();
// Create a horizontal slider with custom min and max; value is set to the middle int minimum = -255; int maximum = 256;
slider = new JSlider(minimum, maximum);
}
}