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

26.1 Files compared

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

26.2 Comparison summary

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

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

26.4 Active regular expressions

No regular expressions were active.

26.5 Comparison detail

  1   package go v.va.med.c cht.model. surveydist ribution;
  2  
  3   import jav a.io.Seria lizable;
  4   import jav a.util.Lis t;
  5  
  6   /**
  7    * 
  8    * @author   D N S
  9    *
  10    */
  11   public cla ss SurveyD istributio nSearchRes ult implem ents Seria lizable
  12   {
  13           pr ivate stat ic final l ong serial VersionUID  = -680813 4771039297 372L;
  14  
  15           pr ivate List <SurveyDis tributionE ntry> surv eyDistribu tionEntrie s = null;
  16           pr ivate bool ean showIV RColumn =  false;
  17           pr ivate bool ean showHo meDeviceCo lumn = fal se;
  18           pr ivate bool ean showBr owserColum n = false;
  19           pr ivate Inte ger totalN umOfSurvey s = 0;
  20           
  21           pu blic Integ er getTota lNumOfSurv eys()
  22           {
  23                    retu rn totalNu mOfSurveys ;
  24           }
  25  
  26           pu blic void  setTotalNu mOfSurveys (Integer t otalNumOfS urveys)
  27           {
  28                    this .totalNumO fSurveys =  totalNumO fSurveys;
  29           }
  30  
  31           pu blic void  addToTotal (Integer r eportsToAd d)
  32           {
  33                    tota lNumOfSurv eys += rep ortsToAdd;
  34           }
  35           
  36           pu blic List< SurveyDist ributionEn try> getSu rveyDistri butionEntr ies()
  37           {
  38                    retu rn surveyD istributio nEntries;
  39           }
  40           pu blic void  setSurveyD istributio nEntries(
  41                             List<S urveyDistr ibutionEnt ry> survey Distributi onEntries)
  42           {
  43                    this .surveyDis tributionE ntries = s urveyDistr ibutionEnt ries;
  44           }
  45           pu blic boole an isShowI VRColumn()
  46           {
  47                    retu rn showIVR Column;
  48           }
  49           pu blic void  setShowIVR Column(boo lean showI VRColumn)
  50           {
  51                    this .showIVRCo lumn = sho wIVRColumn ;
  52           }
  53           pu blic boole an isShowH omeDeviceC olumn()
  54           {
  55                    retu rn showHom eDeviceCol umn;
  56           }
  57           pu blic void  setShowHom eDeviceCol umn(boolea n showHome DeviceColu mn)
  58           {
  59                    this .showHomeD eviceColum n = showHo meDeviceCo lumn;
  60           }
  61           pu blic boole an isShowB rowserColu mn()
  62           {
  63                    retu rn showBro wserColumn ;
  64           }
  65           pu blic void  setShowBro wserColumn (boolean s howBrowser Column)
  66           {
  67                    this .showBrows erColumn =  showBrows erColumn;
  68           }
  69   }