80. EPMO Open Source Coordination Office Redaction File Detail Report

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

80.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\ui\model ReportSetupForm.java Wed May 29 15:26:12 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\ui\model ReportSetupForm.java Mon Jun 10 19:19:21 2019 UTC

80.2 Comparison summary

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

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

80.4 Active regular expressions

No regular expressions were active.

80.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrig ht � 2010  VHA. All r ights rese rved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.c cht.ui.mod el;
  5  
  6   import gov .va.med.fw .ui.model. Form;
  7   import gov .va.med.fw .ui.model. TermType;
  8  
  9   /**
  10    * 
  11    * 
  12    * IHTA oh rs_web Sep  2, 2010
  13    * 
  14    * @author   DNS
  15    */
  16   public cla ss ReportS etupForm e xtends For m {
  17           pr ivate Repo rtSchedule Form repor tSchedule;
  18           pr ivate Repo rtParamete rsForm rep ortParamet ers;
  19           pr ivate Term Type stand ardReport;
  20           pr ivate Stri ng emailAd dress;
  21           pr ivate Term Type fileT ype;
  22  
  23           pu blic Strin g getEmail Address()  {
  24                    retu rn emailAd dress;
  25           }
  26  
  27           pu blic void  setEmailAd dress(Stri ng emailAd dress) {
  28                    this .emailAddr ess = emai lAddress;
  29           }
  30  
  31           pu blic TermT ype getSta ndardRepor t() {
  32                    retu rn standar dReport;
  33           }
  34  
  35           pu blic void  setStandar dReport(Te rmType sta ndardRepor t) {
  36                    this .standardR eport = st andardRepo rt;
  37           }
  38  
  39           pu blic Repor tParameter sForm getR eportParam eters() {
  40                    retu rn reportP arameters;
  41           }
  42  
  43           pu blic void  setReportP arameters( ReportPara metersForm  reportPar ameters) {
  44                    this .reportPar ameters =  reportPara meters;
  45           }
  46  
  47           pu blic Repor tScheduleF orm getRep ortSchedul e() {
  48                    retu rn reportS chedule;
  49           }
  50  
  51           pu blic void  setReportS chedule(Re portSchedu leForm rep ortSchedul e) {
  52                    this .reportSch edule = re portSchedu le;
  53           }
  54  
  55           pu blic TermT ype getFil eType() {
  56                    retu rn fileTyp e;
  57           }
  58  
  59           pu blic void  setFileTyp e(TermType  fileType)  {
  60                    this .fileType  = fileType ;
  61           }
  62  
  63   }