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

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

60.2 Comparison summary

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

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

60.4 Active regular expressions

No regular expressions were active.

60.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    * @author   DNS     tjahjb
  9    *
  10    */
  11   public cla ss ImageFi lterFieldV alue
  12   {
  13           pr ivate fina l String f ieldName;
  14           pr ivate fina l String f ieldValue;
  15  
  16           /* *
  17            *  @param fi eldName
  18            *  @param fi eldValue
  19            * /
  20           pu blic Image FilterFiel dValue(
  21                             String  fieldName ,
  22                             String  fieldValu e)
  23           {
  24                    supe r();
  25                    this .fieldName  = fieldNa me;
  26                    this .fieldValu e = fieldV alue;
  27           }
  28  
  29           /* *
  30            *  @return t he fieldVa lue
  31            * /
  32           pu blic Strin g getField Value()
  33           {
  34                    retu rn fieldVa lue;
  35           }
  36  
  37           /* *
  38            *  @return t he fieldNa me
  39            * /
  40           pu blic Strin g getField Name()
  41           {
  42                    retu rn fieldNa me;
  43           }
  44  
  45   }
  46