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

212.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\report\excelreport ExcelReport.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 ExcelReport.java Mon Jun 10 19:19:22 2019 UTC

212.2 Comparison summary

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

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

212.4 Active regular expressions

No regular expressions were active.

212.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   import jav a.util.Arr ayList;
  8   import jav a.util.Lis t;
  9   import jav a.util.Map ;
  10  
  11   /**
  12    * @author   DNS
  13    * 
  14    */
  15   public cla ss ExcelRe port imple ments Seri alizable {
  16  
  17           pr ivate stat ic final l ong serial VersionUID  = -703632 3661570297 421L;
  18  
  19           pr ivate List <ExcelRepo rtColumn>  columns;
  20           pr ivate Stri ng reportT itle;
  21           pr ivate Stri ng excelTe mplateFile Name;
  22           pr ivate Bool ean filter SummaryRow s = true;
  23           pr ivate Map< String, Ex celReportC ell> summa ryRowCells ;
  24           pr ivate List <String> f ootNotes;
  25  
  26           pu blic List< ExcelRepor tColumn> g etColumns( ) {
  27                    retu rn columns  == null ?  new Array List<Excel ReportColu mn>() : co lumns;
  28           }
  29  
  30           pu blic void  setColumns (List<Exce lReportCol umn> colum ns) {
  31                    this .columns =  columns;
  32           }
  33  
  34           pu blic Strin g getExcel TemplateFi leName() {
  35                    retu rn excelTe mplateFile Name;
  36           }
  37  
  38           pu blic void  setExcelTe mplateFile Name(Strin g excelTem plateFileN ame) {
  39                    this .excelTemp lateFileNa me = excel TemplateFi leName;
  40           }
  41  
  42           pu blic Strin g getRepor tTitle() {
  43                    retu rn reportT itle == nu ll ? "" :  reportTitl e;
  44           }
  45  
  46           pu blic void  setReportT itle(Strin g reportTi tle) {
  47                    this .reportTit le = repor tTitle;
  48           }
  49  
  50           pu blic Boole an getFilt erSummaryR ows() {
  51                    retu rn filterS ummaryRows ;
  52           }
  53  
  54           pu blic void  setFilterS ummaryRows (Boolean f ilterSumma ryRows) {
  55                    this .filterSum maryRows =  filterSum maryRows;
  56           }
  57  
  58           pu blic Map<S tring, Exc elReportCe ll> getSum maryRowCel ls() {
  59                    retu rn summary RowCells;
  60           }
  61  
  62           pu blic void  setSummary RowCells(M ap<String,  ExcelRepo rtCell> su mmaryRowCe lls) {
  63                    this .summaryRo wCells = s ummaryRowC ells;
  64           }
  65           
  66           pu blic List< String> ge tFootNotes () {
  67                    retu rn footNot es == null  ? new Arr ayList<Str ing>() : f ootNotes;
  68           }
  69  
  70           pu blic void  setFootNot es(List<St ring> foot Notes) {
  71                    this .footNotes  = footNot es;
  72           }
  73   }