219. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:25 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.

219.1 Files compared

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

219.2 Comparison summary

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

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

219.4 Active regular expressions

No regular expressions were active.

219.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2005 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.batchpro cess;
  6  
  7   import jav a.io.File;
  8  
  9   import gov .va.med.fw .io.parser .FileParse rListener;
  10  
  11   /**
  12    * Context  informati on about t he running  execution  of a file  based bat ch
  13    * process .
  14    * 
  15    * Created  Feb 16, 2 006 2:26:2 1 PM
  16    * 
  17    * DNS
  18    */
  19   public cla ss DataFil eProcessEx ecutionCon text exten ds DataPro cessExecut ionContext  {
  20           pr ivate File ParserList ener fileP arserListe ner;
  21           pr ivate File  currentFi le;
  22           pr ivate Stri ng current RowRawData ;
  23  
  24           /* *
  25            *  @return R eturns the  currentRo wRawData.
  26            * /
  27           pu blic Strin g getCurre ntRowRawDa ta() {
  28                    retu rn current RowRawData ;
  29           }
  30  
  31           /* *
  32            *  @param cu rrentRowRa wData
  33            *              The curr entRowRawD ata to set .
  34            * /
  35           pu blic void  setCurrent RowRawData (String cu rrentRowRa wData) {
  36                    this .currentRo wRawData =  currentRo wRawData;
  37           }
  38  
  39           /* *
  40            *  @return R eturns the  currentFi le.
  41            * /
  42           pu blic File  getCurrent File() {
  43                    retu rn current File;
  44           }
  45  
  46           /* *
  47            *  @param cu rrentFile
  48            *              The curr entFile to  set.
  49            * /
  50           pu blic void  setCurrent File(File  currentFil e) {
  51                    this .currentFi le = curre ntFile;
  52           }
  53  
  54           /* *
  55            *  @return R eturns the  fileParse rListener.
  56            * /
  57           pu blic FileP arserListe ner getFil eParserLis tener() {
  58                    retu rn filePar serListene r;
  59           }
  60  
  61           /* *
  62            *  @param fi leParserLi stener
  63            *              The file ParserList ener to se t.
  64            * /
  65           pu blic void  setFilePar serListene r(FilePars erListener  fileParse rListener)  {
  66                    this .fileParse rListener  = filePars erListener ;
  67           }
  68  
  69           pu blic boole an hasFile ParserList ener() {
  70                    retu rn filePar serListene r != null;
  71           }
  72   }