/**
  * Cancels this <tt>ContactQuery</tt>.
  *
  * @see ContactQuery#cancel()
  */
 @Override
 public void cancel() {
   if (gQuery != null) {
     gQuery.cancel();
   }
   super.cancel();
 }
Beispiel #2
0
  /**
   * Cancels this <tt>ContactQuery</tt>.
   *
   * @see ContactQuery#cancel()
   */
  public void cancel() {
    clearListeners();

    super.cancel();
  }