예제 #1
0
 /**
  * Adds a SyncOp record to the list of constituent SyncOp records.
  *
  * @param syncOp
  */
 public void addSyncOp(SyncOp syncOp) {
   // If this is the first SyncItem being added, initialize fixed fields.
   if (this.syncOpList.isEmpty()) {
     // Init fields.
     this.deviceId = syncOp.getDeviceId();
     this.syncTransactionId = syncOp.getSyncTransactionId();
   }
   // ADD the column name/value pair to the dictionary.
   this.syncOpList.add(syncOp);
 }