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

64.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 StatusReasonsType.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 StatusReasonsType.java Tue Mar 19 12:04:08 2019 UTC

64.2 Comparison summary

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

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

64.4 Active regular expressions

No regular expressions were active.

64.5 Comparison detail

  1   /**
  2    * 
  3    * Date Cr eated: Jun e 5, 2017
  4    * Develop er:  DNS     tjahjb
  5    */
  6   package go v.va.med.i maging.vie wer.busine ss;
  7  
  8   import jav ax.xml.bin d.annotati on.XmlElem ent;
  9   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  10  
  11   /**
  12    * @author  Administr ator
  13    *
  14    */
  15   @XmlRootEl ement(name ="statusRe asons")
  16   public cla ss StatusR easonsType
  17   {
  18           
  19           pr ivate Stri ng[] statu sReasons;
  20           
  21           pu blic Statu sReasonsTy pe()
  22           {
  23                    supe r();
  24           }
  25  
  26           /* *
  27            *  @param pr intReasons
  28            * /
  29           pu blic Statu sReasonsTy pe(String[ ] statusRe asons)
  30           {
  31                    supe r();
  32                    this .statusRea sons = sta tusReasons ;
  33           }
  34  
  35           /* *
  36            *  @return t he printRe asons
  37            * /
  38           @X mlElement( name="stat usReason")
  39           pu blic Strin g[] getPri ntReasons( )
  40           {
  41                    retu rn statusR easons;
  42           }
  43  
  44           /* *
  45            *  @param pr intReasons  the statu sReasons t o set
  46            * /
  47           pu blic void  setPrintRe asons(Stri ng[] statu sReasons)
  48           {
  49                    this .statusRea sons = sta tusReasons ;
  50           }
  51  
  52   }