Can we have a method added to easily add a mouse wheel event while overriding initEventSets. I am in need of script access to these mouse events. Thanks.
@Override
protected void initEventSets() throws IntrospectionException {
super.initEventSets();
addEventSet(YourComponent.class, "mouseWheel", MouseWheelListener.class,
"mouseWheelMoved");
}