214. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:14 AM Eastern 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.

214.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\report\excelreport ExcelReportColumn.java Wed May 29 15:26:14 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\report\excelreport ExcelReportColumn.java Mon Jun 10 19:19:22 2019 UTC

214.2 Comparison summary

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

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

214.4 Active regular expressions

No regular expressions were active.

214.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 portColumn  implement s Serializ able {
  13  
  14           pr ivate stat ic final l ong serial VersionUID  = -760931 4919370161 888L;
  15  
  16           in t columnIn dex = 0;
  17           St ring colum nHeader; / / Optional  column he ader
  18           St ring filed Name;
  19           in t fieldNum ber = 0;
  20           St ring formu lae; // fi eldName an d formulae  are exclu sive only  one can be
  21           //  specified
  22           Bo olean hide ; // displ ay or hide  the colum n
  23           St ring class Name;
  24           St ring forma t;
  25           St ring strin gValue;
  26           Do uble numer icValue;
  27  
  28           pu blic Strin g getColum nHeader()  {
  29                    retu rn columnH eader;
  30           }
  31  
  32           pu blic void  setColumnH eader(Stri ng columnH eader) {
  33                    this .columnHea der = colu mnHeader;
  34           }
  35  
  36           pu blic int g etColumnIn dex() {
  37                    retu rn columnI ndex;
  38           }
  39  
  40           pu blic void  setColumnI ndex(int c olumnIndex ) {
  41                    this .columnInd ex = colum nIndex;
  42           }
  43  
  44           pu blic Strin g getFiled Name() {
  45                    retu rn filedNa me;
  46           }
  47  
  48           pu blic void  setFiledNa me(String  filedName)  {
  49                    this .filedName  = filedNa me;
  50           }
  51  
  52           pu blic Strin g getFormu lae() {
  53                    retu rn formula e;
  54           }
  55  
  56           pu blic void  setFormula e(String f ormulae) {
  57                    this .formulae  = formulae ;
  58           }
  59  
  60           pu blic Boole an getHide () {
  61                    retu rn hide ==  null ? tr ue : hide;
  62           }
  63  
  64           pu blic void  setHide(Bo olean hide ) {
  65                    this .hide = hi de;
  66           }
  67  
  68           pu blic Strin g getClass Name() {
  69                    retu rn classNa me;
  70           }
  71  
  72           pu blic void  setClassNa me(String  className)  {
  73                    this .className  = classNa me;
  74           }
  75  
  76           pu blic Strin g getForma t() {
  77                    retu rn format;
  78           }
  79  
  80           pu blic void  setFormat( String for mat) {
  81                    this .format =  format;
  82           }
  83  
  84           pu blic int g etFieldNum ber() {
  85                    retu rn fieldNu mber;
  86           }
  87  
  88           pu blic void  setFieldNu mber(int f ieldNumber ) {
  89                    this .fieldNumb er = field Number;
  90           }
  91  
  92           pu blic Doubl e getNumer icValue()  {
  93                    retu rn numeric Value;
  94           }
  95  
  96           pu blic void  setNumeric Value(Doub le numeric Value) {
  97                    this .numericVa lue = nume ricValue;
  98           }
  99  
  100           pu blic Strin g getStrin gValue() {
  101                    retu rn stringV alue;
  102           }
  103  
  104           pu blic void  setStringV alue(Strin g stringVa lue) {
  105                    this .stringVal ue = strin gValue;
  106           }
  107   }