/**
  * Triggered when the link is pressed and then it requests the link (or goes to an anchor within
  * the page)
  */
 public void actionPerformed(ActionEvent evt) {
   if ((!HTMLComponent.PROCESS_HTML_MP1_ONLY)
       && (isMap)
       && (evt.getX()
           != -1)) { // process mp1 is checked in assigning ismap as well, but this check here
                     // should obfuscate out this method override
     processLink(
         htmlC, link + "?" + (evt.getX() - getAbsoluteX()) + "," + (evt.getY() - getAbsoluteY()));
   } else {
     processLink(htmlC, link);
   }
 }