312. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:28 AM Eastern Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

312.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\persistent QueryResults.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\persistent QueryResults.java Wed Dec 12 22:26:42 2018 UTC

312.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 158
Changed 1 2
Inserted 0 0
Removed 0 0

312.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

312.4 Active regular expressions

No regular expressions were active.

312.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2006 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.persiste nt;
  6  
  7   import jav a.util.Lis t;
  8  
  9   /**
  10    * Initial  javadoc f or class Q ueryResult s.
  11    * 
  12    * Created  Sep 19, 2 006 10:29: 46 AM
  13    * 
  14    * DNS
  15    */
  16   public cla ss QueryRe sults impl ements Que ryIncremen tTracker {
  17           /* *
  18            *  An instan ce of seri alVersionU ID
  19            * /
  20           pr ivate stat ic final l ong serial VersionUID  = 8731283 6747712404 35L;
  21           pr ivate int  currentRec ord;
  22           pr ivate int  totalRecor ds;
  23           pr ivate List  data;
  24  
  25           /*
  26            *  (non-Java doc)
  27            *  
  28            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#getIncr ementalDat a()
  29            * /
  30           pu blic List  getIncreme ntalData()  {
  31                    retu rn data;
  32           }
  33  
  34           /*
  35            *  (non-Java doc)
  36            *  
  37            *  @see
  38            *  gov.va.me d.fw.persi stent.Quer yIncrement Tracker#se tIncrement alData(jav a
  39            *  .util.Lis t)
  40            * /
  41           pu blic void  setIncreme ntalData(L ist data)  {
  42                    this .data = da ta;
  43           }
  44  
  45           /*
  46            *  (non-Java doc)
  47            *  
  48            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#getCurr entRecord( )
  49            * /
  50           pu blic int g etCurrentR ecord() {
  51                    retu rn current Record;
  52           }
  53  
  54           /*
  55            *  (non-Java doc)
  56            *  
  57            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#setCurr entRecord( int)
  58            * /
  59           pu blic void  setCurrent Record(int  i) {
  60                    this .currentRe cord = i;
  61           }
  62  
  63           /*
  64            *  (non-Java doc)
  65            *  
  66            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#getTota lRecords()
  67            * /
  68           pu blic int g etTotalRec ords() {
  69                    retu rn totalRe cords;
  70           }
  71  
  72           /*
  73            *  (non-Java doc)
  74            *  
  75            *  @see gov. va.med.fw. persistent .QueryIncr ementTrack er#setTota lRecords(i nt)
  76            * /
  77           pu blic void  setTotalRe cords(int  i) {
  78                    this .totalReco rds = i;
  79           }
  80   }