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

61.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 ImageFilterResult.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 ImageFilterResult.java Tue Mar 19 12:04:06 2019 UTC

61.2 Comparison summary

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

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

61.4 Active regular expressions

No regular expressions were active.

61.5 Comparison detail

  1   /**
  2    * Date Cr eated: Apr  23, 2018
  3    * Develop er:  DNS     tjahjb
  4    */
  5   package go v.va.med.i maging.vie wer.busine ss;
  6  
  7  
  8   /**
  9    * @author   DNS     tjahjb
  10    *
  11    */
  12   public cla ss ImageFi lterResult
  13   {
  14           pr ivate fina l String u serId;
  15           pr ivate fina l String f ilterIEN;
  16           pr ivate fina l String f ilterName;
  17  
  18           /* *
  19            *  @param us erId
  20            *  @param us erName
  21            * /
  22           pu blic Image FilterResu lt(
  23                             String  filterIEN ,
  24                             String  filterNam e,
  25                             String  userId)
  26           {
  27                    supe r();
  28                    this .userId =  userId;
  29                    this .filterIEN  = filterI EN;
  30                    this .filterNam e = filter Name;
  31           }
  32  
  33           /* *
  34            *  @return t he userId
  35            * /
  36           pu blic Strin g getUserI d()
  37           {
  38                    retu rn userId;
  39           }
  40  
  41           /* *
  42            *  @return t he filterN ame
  43            * /
  44           pu blic Strin g getFilte rName()
  45           {
  46                    retu rn filterN ame;
  47           }
  48  
  49           /* *
  50            *  @return t he filterI EN
  51            * /
  52           pu blic Strin g getFilte rIEN()
  53           {
  54                    retu rn filterI EN;
  55           }
  56   }
  57  
  58  
  59