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

97.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 ImagePropertyType.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 ImagePropertyType.java Tue Mar 19 12:04:14 2019 UTC

97.2 Comparison summary

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

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

97.4 Active regular expressions

No regular expressions were active.

97.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: May  2, 2018
  7    * @author   DNS     tjahjb
  8    *
  9    */
  10   @XmlRootEl ement(name ="imagePro perty")
  11   public cla ss ImagePr opertyType
  12   {
  13           pr ivate Stri ng ien;
  14           pr ivate Stri ng flags;
  15           pr ivate Stri ng name;
  16           pr ivate Stri ng value;
  17           
  18           pu blic Image PropertyTy pe()
  19           {
  20                    supe r();
  21           }
  22  
  23           /* *
  24            *  @param na me
  25            *  @param va lue
  26            * /
  27           pu blic Image PropertyTy pe(
  28                             String  ien,
  29                             String  flags,
  30                             String  name,
  31                             String  value)
  32           {
  33                    supe r();
  34                    this .ien = ien ;
  35                    this .flags = f lags;
  36                    this .name = na me;
  37                    this .value = v alue;
  38           }
  39           
  40           /* *
  41            *  @return t he ien
  42            * /
  43           pu blic Strin g getIen()
  44           {
  45                    retu rn ien;
  46           }
  47  
  48           /* *
  49            *  @param ie n the ien  to set
  50            * /
  51           pu blic void  setIen(Str ing ien)
  52           {
  53                    this .ien = ien ;
  54           }
  55  
  56           /* *
  57            *  @return t he flags
  58            * /
  59           pu blic Strin g getFlags ()
  60           {
  61                    retu rn flags;
  62           }
  63  
  64           /* *
  65            *  @param ie n flags fl ags to set
  66            * /
  67           pu blic void  setFlags(S tring flag s)
  68           {
  69                    this .flags = f lags;
  70           }
  71  
  72           /* *
  73            *  @return t he value
  74            * /
  75           pu blic Strin g getValue ()
  76           {
  77                    retu rn value;
  78           }
  79  
  80           /* *
  81            *  @param va lue the va lue to set
  82            * /
  83           pu blic void  setValue(S tring valu e)
  84           {
  85                    this .value = v alue;
  86           }
  87  
  88           /* *
  89            *  @return t he name
  90            * /
  91           pu blic Strin g getName( )
  92           {
  93                    retu rn name;
  94           }
  95  
  96           /* *
  97            *  @param na me the nam e to set
  98            * /
  99           pu blic void  setName(St ring name)
  100           {
  101                    this .name = na me;
  102           }
  103   }