99. EPMO Open Source Coordination Office Redaction File Detail Report

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

99.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 SetImagePropertiesResultsType.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 SetImagePropertiesResultsType.java Tue Mar 19 12:04:16 2019 UTC

99.2 Comparison summary

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

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

99.4 Active regular expressions

No regular expressions were active.

99.5 Comparison detail

  1   /**
  2    * Date Cr eated: Aug  3, 2018
  3    * Develop er:  DNS     tjahjb
  4    */
  5   package go v.va.med.i maging.vie wer.rest.t ypes;
  6  
  7   import jav ax.xml.bin d.annotati on.XmlElem ent;
  8   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  9  
  10   /**
  11    * @author   DNS     tjahjb
  12    *
  13    */
  14   @XmlRootEl ement(name ="setImage Properties Results")
  15   public cla ss SetImag ePropertie sResultsTy pe
  16   {
  17           
  18           pr ivate Stri ng[] image Properties ;
  19           
  20           pu blic SetIm agePropert iesResults Type()
  21           {
  22                    supe r();
  23           }
  24  
  25           /* *
  26            *  @param im ageUrns
  27            * /
  28           pu blic SetIm agePropert iesResults Type(Strin g[] imageP roperties)
  29           {
  30                    supe r();
  31                    this .imageProp erties = i mageProper ties;
  32           }
  33  
  34           /* *
  35            *  @return t he imagePr operties
  36            * /
  37           @X mlElement( name="setI mageProper tyResult")
  38           pu blic Strin g[] getIma geProperti es()
  39           {
  40                    retu rn imagePr operties;
  41           }
  42  
  43           /* *
  44            *  @param im agePropert ies the im agePropert ies to set
  45            * /
  46           pu blic void  setImagePr operties(S tring[] im agePropert ies)
  47           {
  48                    this .imageProp erties = i mageProper ties;
  49           }
  50  
  51   }