private void sendMouseData() {
   if (elementOfNote != null && elementOfNote instanceof Device) {
     DeviceId devId = (DeviceId) elementOfNote.id();
     Set<Link> links = linkService.getDeviceEgressLinks(devId);
     sendHighlights(fromLinks(links, devId));
   }
   // Note: could also process Host, if available
 }