new MouseWheelEvent(modifiers, location, clickCount, scrollType, scrollAmount, wheelRotation).dispatch(owner);
}
private static Point pointFor(PropProxy prop, int x, int y)
{
final PropPanel propPanel = (PropPanel)prop.getPeer();
Point absoluteLocation = propPanel.getAbsoluteLocation();
int localX = absoluteLocation.x + x;
int localY = absoluteLocation.y + y;
return new Point(localX, localY);
}