89. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 1:06:56 PM 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.

89.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\util PdfReference.java Wed Mar 27 19:21:13 2019 UTC
2 C:\AraxisMergeCompare\Pri_re\ARS_Backend\ars_app\src\main\java\gov\va\med\ewv\util PdfReference.java Thu Mar 28 17:51:08 2019 UTC

89.2 Comparison summary

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

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

89.4 Active regular expressions

No regular expressions were active.

89.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.e wv.util;
  5  
  6   /**
  7    * This cl ass stores  stores a  reference  to a PDF f ile. 
  8    * 
  9    * @author   DN S      PEREZF
  10    *
  11    */
  12   public cla ss PdfRefe rence {
  13           
  14           /* *
  15            *  Short des cription o f the PDF  file
  16            * /
  17           pr ivate Stri ng alt;
  18           
  19           /* *
  20            *  The Uniqu e ID of th e PDF Refe rence from  the datab ase.
  21            * /
  22           pr ivate Stri ng guid;
  23           
  24           /* *
  25            *  Construct or.
  26            * /
  27           pu blic PdfRe ference()  {
  28                    setG uid(null);
  29                    setA lt(null);
  30           }
  31           
  32           /* *
  33            *  Construct or.
  34            *  
  35            *  @param gu id - value  to use to  set the " guid" data
  36            *  @param al t - value  to use to  set the "a lt" data
  37            * /
  38           pu blic PdfRe ference(St ring guid,  String al t) {
  39                    setG uid(guid);
  40                    setA lt(alt);
  41           }
  42           
  43           /* *
  44            *  Gets the  value of t he "alt" d ata.
  45            *  
  46            *  @return v alue of th e "alt" da ta
  47            * /
  48           pu blic Strin g getAlt()  {
  49                    retu rn alt;
  50           }
  51           
  52           /* *
  53            *  Gets the  value of t he "guid"  data.
  54            *  
  55            *  @return v alue of th e "guid" d ata
  56            * /
  57           pu blic Strin g getGuid( ) {
  58                    retu rn guid;
  59           }
  60           
  61           /* *
  62            *  Set the v alue of th e "alt" da ta.
  63            *  
  64            *  @param al t - value  to use to  set the "a lt" data
  65            * /
  66           pu blic void  setAlt(Str ing alt) {
  67                    if ( alt == nul l) {
  68                             this.a lt = "";
  69                    } el se {
  70                             this.a lt = alt.t rim();
  71                    }
  72           }
  73           
  74           /* *
  75            *  Set the v alue of th e "guid" d ata.
  76            *  
  77            *  @param gu id - value  to use to  set the " guid" data
  78            * /
  79           pu blic void  setGuid(St ring guid)  {
  80                    if ( guid == nu ll) {
  81                             this.g uid = "";
  82                    } el se {
  83                             this.g uid = guid .trim();
  84                    }
  85           }
  86   }