250. EPMO Open Source Coordination Office Redaction File Detail Report

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

250.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule RuleDataAware.java Wed May 29 15:26:14 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule RuleDataAware.java Mon Jun 10 19:27:47 2019 UTC

250.2 Comparison summary

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

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

250.4 Active regular expressions

No regular expressions were active.

250.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** ********** ********** **********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule;
  5  
  6   // Java cl asses
  7   import jav a.io.Seria lizable;
  8  
  9   import gov .va.med.fw .model.Abs tractEntit y;
  10  
  11   // EDB cla sses
  12  
  13   /**
  14    * Project : Framewor k
  15    * 
  16    * @author   DN S
  17    * @versio n 1.0
  18    */
  19   public int erface Rul eDataAware  extends S erializabl e {
  20  
  21           /* *
  22            *  Returns a  printine  entity sto red in an  input data  collectio n
  23            *  
  24            *  @return A  printine  version of  an entity
  25            * /
  26           pu blic Abstr actEntity  getPristin eData();
  27  
  28           /* *
  29            *  Sets a pr istine ent ity stored  in an inp ut data co llection
  30            *  
  31            *  @param pr istine
  32            *              A pristi ne version  of an ent ity
  33            * /
  34           pu blic void  setPristin eData(Abst ractEntity  pristine) ;
  35  
  36           /* *
  37            *  Returns a n incoming  entity st ored in an  input dat a collecti on
  38            *  
  39            *  @return A n incoming  version o f an entit y
  40            * /
  41           pu blic Abstr actEntity  getIncomin gData();
  42  
  43           /* *
  44            *  Sets an i ncoming en tity store d in an in put data c ollection
  45            *  
  46            *  @param in coming
  47            *              An incom ing versio n of an en tity
  48            * /
  49           pu blic void  setIncomin gData(Abst ractEntity  incoming) ;
  50  
  51           /* *
  52            *  Returns a  result en tity store d in an in put data c ollection
  53            *  
  54            *  @return A  result ve rsion of a n entity
  55            * /
  56           pu blic Abstr actEntity  getResultD ata();
  57  
  58           /* *
  59            *  Sets a re sult entit y stored i n an input  data coll ection
  60            *  
  61            *  @param re sult
  62            *              A result  version o f an entit y
  63            * /
  64           pu blic void  setResultD ata(Abstra ctEntity r esult);
  65   }