コード例 #1
0
 /**
  * Remove a KeyListener from the list of KeyListeners.
  *
  * @param getter
  * @param complain
  */
 public void removePendingKeys(HasKeyListener getter, boolean complain) {
   boolean found = schedTransient.removePendingKeys(getter);
   if (schedCore != null) found |= schedCore.removePendingKeys(getter);
   if (complain && !found) Logger.error(this, "Listener not found when removing: " + getter);
 }