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

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

62.2 Comparison summary

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

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

62.4 Active regular expressions

No regular expressions were active.

62.5 Comparison detail

  1   /**
  2    * Date Cr eated: May  2, 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 ImagePr operty
  12   {
  13           pr ivate fina l String n ame;
  14           pr ivate fina l String v alue;
  15  
  16           pr ivate fina l String i en;
  17           pr ivate fina l String f lags;
  18  
  19           /* *
  20            *  @param ie n
  21            *  @param fl ags
  22            *  @param na me
  23            *  @param va lue
  24            *  @param re ason
  25            * /
  26           pu blic Image Property(
  27                             String  ien,
  28                             String  flags,
  29                             String  name,
  30                             String  value)
  31           {
  32                    supe r();
  33                    this .ien = ien ;
  34                    this .flags = f lags;
  35                    this .name = na me;
  36                    this .value = v alue;
  37           }
  38  
  39           pu blic Image Property(
  40                             String  name,
  41                             String  value)
  42           {
  43                    supe r();
  44                    this .ien = "";
  45                    this .flags = " ";
  46                    this .name = na me;
  47                    this .value = v alue;
  48           }
  49  
  50           /* *
  51            *  @return t he ien
  52            * /
  53           pu blic Strin g getIen()
  54           {
  55                    retu rn ien;
  56           }
  57  
  58           /* *
  59            *  @return t he flags
  60            * /
  61           pu blic Strin g getFlags ()
  62           {
  63                    retu rn flags;
  64           }
  65  
  66           /* *
  67            *  @return t he value
  68            * /
  69           pu blic Strin g getValue ()
  70           {
  71                    retu rn value;
  72           }
  73  
  74           /* *
  75            *  @return t he name
  76            * /
  77           pu blic Strin g getName( )
  78           {
  79                    retu rn name;
  80           }
  81  
  82   }
  83