I see the method JScrollPane.setWheelScrollingEnabled(boolean) to enable or disable the mouse wheel scrolling. Is there any way to adjust the speed of the scro
JScrollPane.setWheelScrollingEnabled(boolean)
You can do this by setting the unit increment for a ScrollBar. See the example.
yourScrollPane.getVerticalScrollBar().setUnitIncrement(16);