14. 30. 27. Make it vertical and move top-to-bottom
import javax.swing.JSlider;
public class Main { public static void main(String[] argv) throws Exception {
JSlider slider = new JSlider();
slider.setOrientation(JSlider.VERTICAL);
slider.setInverted(true);
}
}