Пример #1
0
 /**
  * Notifies this <tt>GoogleContactsQuery</tt> that it has stopped performing in the associated
  * background <tt>Thread</tt>.
  *
  * @param completed <tt>true</tt> if this <tt>ContactQuery</tt> has successfully completed,
  *     <tt>false</tt> if an error has been encountered during its execution
  * @see AsyncContactQuery#stopped(boolean)
  */
 @Override
 protected void stopped(boolean completed) {
   try {
     super.stopped(completed);
   } finally {
     getContactSource().stopped(this);
   }
 }