260. EPMO Open Source Coordination Office Redaction File Detail Report

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

260.1 Files compared

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

260.2 Comparison summary

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

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

260.4 Active regular expressions

No regular expressions were active.

260.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.io;
  6  
  7   import org .apache.co mmons.coll ections.Or deredMap;
  8  
  9   import com .infomata. data.DataR ow;
  10  
  11   /**
  12    * Allows  for implem entors to  deal direc tly with f ile data f or manual
  13    * manipul ation. Use ful for la rge files  where the  volume of  metadata i s too
  14    * costly  of a memor y footprin t.
  15    * 
  16    * Created  Mar 16, 2 006 1:09:3 4 PM
  17    * 
  18    * DNS
  19    */
  20   public int erface Raw FileDataCo ntainer {
  21           /* *
  22            *  Used to m anually po pulate obj ects from  file data  while pars ing
  23            *  
  24            *  @param ra wFileData
  25            *  @param pa rsedRow
  26            *  @param cl assMapping
  27            *              Useful i n case of  leveraging  configura tion-based  transform s
  28            *              (if any)
  29            *  @throws E xception
  30            * /
  31           pu blic void  setRawFile Data(Strin g rawFileD ata, DataR ow parsedR ow, ClassM apping cla ssMapping)
  32                             throws  Exception ;
  33  
  34           /* *
  35            *  Used to m anually po pulate obj ects for f ile data w hile writi ng
  36            *  
  37            *  @return O rderedMap  allows for  strict or dering AND  name-base d matching  of
  38            *          c onfigurati on-based t ransforms  (if any)
  39            *  @throws E xception
  40            * /
  41           pu blic Order edMap getR awFileData () throws  Exception;
  42  
  43           /* *
  44            *  Used to b ootstrap a uto regist ration of  classes fo r conversi on. This l ist
  45            *  does not  need to in clude the  implementi ng class,  nor any cl asses that  are
  46            *  reachable  by its Cl ass (not i nstance) g raph.
  47            *  
  48            *  @return
  49            * /
  50           pu blic Class [] getClas sesForAuto RegisterCo nverters() ;
  51   }