8. EPMO Open Source Coordination Office Redaction File Detail Report

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

8.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\model\pssreport SurveyTrendChartResult.java Wed May 29 15:26:30 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\model\pssreport SurveyTrendChartResult.java Mon Jun 10 19:25:56 2019 UTC

8.2 Comparison summary

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

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

8.4 Active regular expressions

No regular expressions were active.

8.5 Comparison detail

  1   package go v.va.med.c cht.model. pssreport;
  2  
  3   /**
  4    * 
  5    * @author   D N S
  6    *
  7    */
  8  
  9   public cla ss SurveyT rendChartR esult {
  10  
  11           pr ivate Stri ng month;
  12           pr ivate Stri ng year;
  13           pr ivate Stri ng quarter ;
  14           pr ivate Stri ng visn;
  15           pr ivate int  numOfSurve ys;
  16           pr ivate int  monthNum;
  17           
  18           pu blic Strin g getMonth () {
  19                    retu rn month;
  20           }
  21           pu blic void  setMonth(S tring mont h) {
  22                    this .month = m onth;
  23           }
  24           pu blic Strin g getYear( ) {
  25                    retu rn year;
  26           }
  27           pu blic void  setYear(St ring year)  {
  28                    this .year = ye ar;
  29           }
  30           pu blic Strin g getQuart er() {
  31                    retu rn quarter ;
  32           }
  33           pu blic void  setQuarter (String qu arter) {
  34                    this .quarter =  quarter;
  35           }
  36           pu blic Strin g getVisn( ) {
  37                    retu rn visn;
  38           }
  39           pu blic void  setVisn(St ring visn)  {
  40                    this .visn = vi sn;
  41           }
  42           pu blic int g etNumOfSur veys() {
  43                    retu rn numOfSu rveys;
  44           }
  45           pu blic void  setNumOfSu rveys(int  numOfSurve ys) {
  46                    this .numOfSurv eys = numO fSurveys;
  47           }
  48           pu blic int g etMonthNum () {
  49                    retu rn monthNu m;
  50           }
  51           pu blic void  setMonthNu m(int mont hNum) {
  52                    this .monthNum  = monthNum ;
  53           }
  54           
  55   }