63. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/25/2019 8:58:04 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.

63.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business QAReviewReportResult.java Mon Mar 18 20:39:10 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingCommon\main\src\java\gov\va\med\imaging\viewer\business QAReviewReportResult.java Tue Mar 19 12:04:08 2019 UTC

63.2 Comparison summary

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

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

63.4 Active regular expressions

No regular expressions were active.

63.5 Comparison detail

  1   /**
  2    * Date Cr eated: Apr  25, 2018
  3    * Develop er:  DNS     tjahjb
  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   DNS     tjahjb
  11    *
  12    */
  13   public cla ss QARevie wReportRes ult
  14   {
  15           pr ivate fina l String r eportFlags ;
  16           pr ivate fina l String f romDate;
  17           pr ivate fina l String t hroughDate ;
  18           pr ivate fina l String r eportStart DateTime;
  19           pr ivate fina l String r eportCompl etedDateTi me;
  20  
  21           /* *
  22            *  @param us erId
  23            *  @param us erName
  24            * /
  25           pu blic QARev iewReportR esult(
  26                             String  reportFla gs,
  27                             String  fromDate,
  28                             String  throughDa te,
  29                             String  reportSta rtDateTime ,
  30                             String  reportCom pletedDate Time
  31                             )
  32           {
  33                    supe r();
  34                    this .reportFla gs = repor tFlags;
  35                    this .fromDate  = fromDate ;
  36                    this .throughDa te = throu ghDate;
  37                    this .reportSta rtDateTime  = reportS tartDateTi me;
  38                    this .reportCom pletedDate Time = rep ortComplet edDateTime ;
  39           }
  40  
  41           pu blic Strin g getRepor tFlags() {
  42                    retu rn reportF lags;
  43           }
  44  
  45           pu blic Strin g getFromD ate() {
  46                    retu rn fromDat e;
  47           }
  48  
  49           pu blic Strin g getThrou ghDate() {
  50                    retu rn through Date;
  51           }
  52  
  53           pu blic Strin g getRepor tStartDate Time() {
  54                    retu rn reportS tartDateTi me;
  55           }
  56  
  57           pu blic Strin g getRepor tCompleted DateTime()  {
  58                    retu rn reportC ompletedDa teTime;
  59           }
  60  
  61   }
  62  
  63  
  64