142. EPMO Open Source Coordination Office Redaction File Detail Report

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

142.1 Files compared

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

142.2 Comparison summary

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

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

142.4 Active regular expressions

No regular expressions were active.

142.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.io.parse r;
  6  
  7   import jav a.util.Lis t;
  8  
  9   import gov .va.med.fw .batchproc ess.DataFi leProcessE xecutionCo ntext;
  10  
  11   /**
  12    * Interfa ce for tho se service s that pro cess data  from a fil e and woul d like to
  13    * be noti fied after  n number  of objects  created.  Allows to  process da ta in
  14    * chunks,  or even o ne at a ti me - rathe r than wai ting for a ll the dat a to be
  15    * built.
  16    * 
  17    * Created  Feb 2, 20 06 4:04:45  PM
  18    * 
  19    * @author   DNS     DN S
  20    */
  21   public int erface Fil eParserLis tener {
  22           pu blic boole an acceptD ata(DataFi leProcessE xecutionCo ntext cont ext, Strin g nextRowR awData,
  23                             List b eans);
  24  
  25           pu blic void  processDat a(DataFile ProcessExe cutionCont ext contex t, List ac quiredData )
  26                             throws  Exception ;
  27  
  28           /* *
  29            *  
  30            *  @param co ntext
  31            *  @param e
  32            *  @return I ndicates t o caller i f they sho uld keep a ny accumul ated data
  33            * /
  34           pu blic boole an beanCre ationFailu re(DataFil eProcessEx ecutionCon text conte xt,
  35                             String  nextRowRa wData, Exc eption e);
  36  
  37           pu blic void  beanCreati onSuccess( DataFilePr ocessExecu tionContex t context,  String ne xtRowRawDa ta);
  38  
  39           pu blic boole an isInter rupted(Dat aFileProce ssExecutio nContext c ontext);
  40   }