If you try to use the JMouseWheel library and your
code calls the JDialogFactory class method I show
below, the method will recurse on itself until the VM
crashes, as the function signature for createDialog is
the same for the function as it is in the function
call *inside* createDialog.
public static JDialog createDialog(
Dialog owner, String title, boolean modal) {
return createDialog(owner, title, modal);
}
to duplicate the problem, try calling it like so:
JDialog dialog = JMouseWheelDialogFactory.createDialog
(ownerDialog, "my dialog", true);