321. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:28 AM Eastern Standard 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.

321.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\report\excelreport ExcelReportCell.java Fri Dec 7 17:36:40 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\report\excelreport ExcelReportCell.java Wed Dec 12 22:33:39 2018 UTC

321.2 Comparison summary

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

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

321.4 Active regular expressions

No regular expressions were active.

321.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.f w.report.e xcelreport ;
  5  
  6   import jav a.io.Seria lizable;
  7  
  8   /**
  9    * @author   DNS
  10    * 
  11    */
  12   public cla ss ExcelRe portCell i mplements  Serializab le {
  13  
  14           pr ivate stat ic final l ong serial VersionUID  = -760931 4919370161 888L;
  15  
  16           /*
  17            *  values ar e exclusiv e in the o rder of st ringValue,  DoubleVal ue and
  18            *  Formuale
  19            * /
  20           St ring strin gValue = n ull;
  21           Do uble numer icValue =  null;
  22           St ring formu lae = null ;
  23           St ring forma t = null;
  24  
  25           pu blic Strin g getFormu lae() {
  26                    retu rn formula e;
  27           }
  28  
  29           pu blic void  setFormula e(String f ormulae) {
  30                    this .formulae  = formulae ;
  31           }
  32  
  33           pu blic Strin g getForma t() {
  34                    retu rn format;
  35           }
  36  
  37           pu blic void  setFormat( String for mat) {
  38                    this .format =  format;
  39           }
  40  
  41           pu blic Doubl e getNumer icValue()  {
  42                    retu rn numeric Value;
  43           }
  44  
  45           pu blic void  setNumeric Value(Doub le numeric Value) {
  46                    this .numericVa lue = nume ricValue;
  47           }
  48  
  49           pu blic Strin g getStrin gValue() {
  50                    retu rn stringV alue;
  51           }
  52  
  53           pu blic void  setStringV alue(Strin g stringVa lue) {
  54                    this .stringVal ue = strin gValue;
  55           }
  56   }