46. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/5/2018 10:24:14 AM Central 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.

46.1 Files compared

# Location File Last Modified
1 patch_205_build_9.zip\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business TreatingFacilityResult.java Wed May 30 14:35:24 2018 UTC
2 patch_205_build_9.zip\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business TreatingFacilityResult.java Mon Jun 4 20:24:34 2018 UTC

46.2 Comparison summary

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

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

46.4 Active regular expressions

No regular expressions were active.

46.5 Comparison detail

  1   /**
  2    * Date Cr eated: Feb  16, 2018
  3    * Develop er:  PII
  4    */
  5   package go v.va.med.i maging.vie wer.busine ss;
  6  
  7   import jav a.util.Dat e;
  8  
  9   /**
  10    * @author   PII
  11    *
  12    */
  13   public cla ss Treatin gFacilityR esult
  14   {
  15           pr ivate fina l String i nstitution IEN;
  16           pr ivate fina l String i nstitution Name;
  17           pr ivate fina l String f acilityTyp e;
  18           pr ivate fina l String c urrentDate OnRecord;
  19  
  20           /* *
  21            *  @param in stitutionI EN
  22            *  @param in stitutionN ame
  23            *  @param cu rrentDateO nRecord
  24            *  @param fa cilityType
  25            * /
  26           pu blic Treat ingFacilit yResult(
  27                             String  instituti onIEN,
  28                             String  instituti onName,
  29                             String  currentDa teOnRecord ,
  30                             String  facilityT ype)
  31           {
  32                    supe r();
  33                    this .instituti onIEN = in stitutionI EN;
  34                    this .instituti onName = i nstitution Name;
  35                    this .currentDa teOnRecord  = current DateOnReco rd;
  36                    this .facilityT ype = faci lityType;
  37           }
  38  
  39           /* *
  40            *  @return t he institu tionIEN
  41            * /
  42           pu blic Strin g getInsti tutionIEN( )
  43           {
  44                    retu rn institu tionIEN;
  45           }
  46  
  47           /* *
  48            *  @return t he institu tionName
  49            * /
  50           pu blic Strin g getInsti tutionName ()
  51           {
  52                    retu rn institu tionName;
  53           }
  54  
  55           /* *
  56            *  @return t he result  currentDat eOnRecord
  57            * /
  58           pu blic Strin g getCurre ntDateOnRe cord()
  59           {
  60                    retu rn current DateOnReco rd;
  61           }
  62           
  63           /* *
  64            *  @return t he institu tionName
  65            * /
  66           pu blic Strin g getFacil ityType()
  67           {
  68                    retu rn facilit yType;
  69           }
  70  
  71   }
  72  
  73