Example #1
0
 /**
  * the onClickSequence for this button
  *
  * @return true if the even was handled
  */
 protected boolean doOnClickSequence(int x, int y) throws IOException, SAXException {
   verifyButtonEnabled();
   boolean result = doOnClickEvent();
   if (result) {
     doButtonAction(x, y);
   }
   this.rememberEnableState();
   return result;
 }