204. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:13 AM Eastern Daylight 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.

204.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent QueryResults.java Wed May 29 15:26:04 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\persistent QueryResults.java Mon Jun 10 19:30:05 2019 UTC

204.2 Comparison summary

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

204.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

204.4 Active regular expressions

No regular expressions were active.

204.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    * @author   DNS     DN S
  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   }