156157158159160161162163164165166
// // In all cases, display the href in the userAgent // SVGAElement elt = (SVGAElement)evt.getCurrentTarget(); if (elt != null) { String href = XLinkSupport.getXLinkHref(elt); userAgent.displayMessage(href); } }
182183184185186187188189190191
return; // No need to set the cursor on out events: this is taken care of // by the BridgeContext // Hide the href in the userAgent SVGAElement elt = (SVGAElement)evt.getCurrentTarget(); if (elt != null) { userAgent.displayMessage(""); } }