* @return the consumeEvents setting of the mouse event concerns
* an OMGraphic, false if it didn't.
*/
protected boolean updateMouseMoved(MouseEvent e) {
boolean ret = false;
OMGraphic omg = getGeometryUnder(e);
GeometryOfInterest goi = getMovementInterest();
if (omg != null && grp != null) {
// This gets called if the goi is new or if the goi
// refers to a different OMGraphic as previously noted.
if (goi == null || !goi.appliesTo(omg)) {
if (goi != null) {
mouseNotOver(goi.getGeometry());
}
goi = new GeometryOfInterest(omg, e);
setMovementInterest(goi);
setNoTimerOverOMGraphic(!omg.shouldRenderFill());
ret = mouseOver(omg, e);
}
} else {
if (goi != null) {