14. 30. 35. Constraining JSlider Component Values to Tick Marks
import javax.swing.JSlider;
public class Main { public static void main(String[] argv) throws Exception {
// Create a horizontal slider that moves left-to-right
JSlider slider = new JSlider();
// Set major tick marks every 25 units int tickSpacing = 25;
slider.setMajorTickSpacing(tickSpacing);
}
}