Пример #1
0
 @Override
 public void onPostSyncItem(
     Context context, Account account, Uri uri, JSONObject item, boolean updated)
     throws SyncException, IOException {
   super.onPostSyncItem(context, account, uri, item, updated);
   for (final SyncItem child : children) {
     child.onPostSyncItem(context, account, uri, item, updated);
   }
 }
Пример #2
0
 @Override
 public void onPostSyncItem(
     Context context, Account account, Uri uri, JSONObject item, boolean updated)
     throws SyncException, IOException {
   super.onPostSyncItem(context, account, uri, item, updated);
   chain.onPostSyncItem(context, account, uri, item, updated);
 }