93. EPMO Open Source Coordination Office Redaction File Detail Report

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

93.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IMAG_Source\VISA\Java\ViewerImagingWebApp\main\src\java\gov\va\med\imaging\viewer\rest\types ImageFilterFieldValueType.java Mon Mar 18 20:39:13 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingWebApp\main\src\java\gov\va\med\imaging\viewer\rest\types ImageFilterFieldValueType.java Tue Mar 19 12:04:14 2019 UTC

93.2 Comparison summary

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

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

93.4 Active regular expressions

No regular expressions were active.

93.5 Comparison detail

  1   package go v.va.med.i maging.vie wer.rest.t ypes;
  2  
  3   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  4  
  5   /**
  6    * Date Cr eated: Apr  23, 2018
  7    * @author   DNS     tjahjb
  8    *
  9    */
  10   @XmlRootEl ement(name ="imageFil terFieldVa lue")
  11   public cla ss ImageFi lterFieldV alueType
  12   {
  13           pr ivate Stri ng fieldNa me;
  14           pr ivate Stri ng fieldVa lue;
  15           
  16           pu blic Image FilterFiel dValueType ()
  17           {
  18                    supe r();
  19           }
  20  
  21           /* *
  22            *  @param fi eldName
  23            *  @param fi eldValue
  24            * /
  25           pu blic Image FilterFiel dValueType (
  26                             String  fieldName ,
  27                             String  fieldValu e)
  28           {
  29                    supe r();
  30                    this .fieldName  = fieldNa me;
  31                    this .fieldValu e = fieldV alue;
  32           }
  33           
  34           /* *
  35            *  @return t he fieldVa lue
  36            * /
  37           pu blic Strin g getField Value()
  38           {
  39                    retu rn fieldVa lue;
  40           }
  41  
  42           /* *
  43            *  @param fi eldValue t he fieldVa lue to set
  44            * /
  45           pu blic void  setFieldVa lue(String  fieldValu e)
  46           {
  47                    this .fieldValu e = fieldV alue;
  48           }
  49  
  50           /* *
  51            *  @return t he fieldNa me
  52            * /
  53           pu blic Strin g getField Name()
  54           {
  55                    retu rn fieldNa me;
  56           }
  57  
  58           /* *
  59            *  @param fi eldName th e fieldNam e to set
  60            * /
  61           pu blic void  setFieldNa me(String  fieldName)
  62           {
  63                    this .fieldName  = fieldNa me;
  64           }
  65   }