Package com.jidesoft.spinner
Class SpinnerWheelSupport
- java.lang.Object
-
- com.jidesoft.spinner.SpinnerWheelSupport
-
public class SpinnerWheelSupport extends java.lang.Object
A helper class to add mouse wheel support to JSpinner. You can callinstallMouseWheelSupport(javax.swing.JSpinner)
to add the support anduninstallMouseWheelSupport(javax.swing.JSpinner)
to remove the support.
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.String
ACTION_NAME_DECREMENT
protected static java.lang.String
ACTION_NAME_INCREMENT
static java.lang.String
CLIENT_PROPERTY_MOUSE_WHEEL_LISTENER
-
Constructor Summary
Constructors Constructor Description SpinnerWheelSupport()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
installMouseWheelSupport(javax.swing.JSpinner spinner)
static void
uninstallMouseWheelSupport(javax.swing.JSpinner spinner)
-
-
-
Field Detail
-
CLIENT_PROPERTY_MOUSE_WHEEL_LISTENER
public static final java.lang.String CLIENT_PROPERTY_MOUSE_WHEEL_LISTENER
- See Also:
- Constant Field Values
-
ACTION_NAME_INCREMENT
protected static final java.lang.String ACTION_NAME_INCREMENT
- See Also:
- Constant Field Values
-
ACTION_NAME_DECREMENT
protected static final java.lang.String ACTION_NAME_DECREMENT
- See Also:
- Constant Field Values
-
-