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

76.1 Files compared

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

76.2 Comparison summary

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

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

76.4 Active regular expressions

No regular expressions were active.

76.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.c cht.ui.mod el;
  5  
  6   import jav a.util.Dat e;
  7  
  8   import gov .va.med.fw .ui.model. Form;
  9   import gov .va.med.fw .ui.model. TermType;
  10  
  11   /**
  12    * @author   DNS
  13    *
  14    */
  15   public cla ss DeviceR equirement Form exten ds Form {
  16           pr ivate Term Type facil ity = null ;
  17           pr ivate Term Type devic eType = nu ll;
  18           pr ivate Inte ger device sOnHand =  0;
  19           pr ivate Shor t devicesN eeded = 0;
  20           pr ivate Date  assessmen tDate = nu ll;
  21           
  22           pu blic TermT ype getFac ility() {
  23                    retu rn facilit y;
  24           }
  25           pu blic void  setFacilit y(TermType  facility)  {
  26                    this .facility  = facility ;
  27           }
  28           pu blic TermT ype getDev iceType()  {
  29                    retu rn deviceT ype;
  30           }
  31           pu blic void  setDeviceT ype(TermTy pe deviceT ype) {
  32                    this .deviceTyp e = device Type;
  33           }
  34           pu blic Integ er getDevi cesOnHand( ) {
  35                    retu rn devices OnHand;
  36           }
  37           pu blic void  setDevices OnHand(Int eger devic esOnHand)  {
  38                    this .devicesOn Hand = dev icesOnHand ;
  39           }
  40           pu blic Short  getDevice sNeeded()  {
  41                    retu rn devices Needed;
  42           }
  43           pu blic void  setDevices Needed(Sho rt devices Needed) {
  44                    this .devicesNe eded = dev icesNeeded ;
  45           }
  46           pu blic Date  getAssessm entDate()  {
  47                    retu rn assessm entDate;
  48           }
  49           pu blic void  setAssessm entDate(Da te assessm entDate) {
  50                    this .assessmen tDate = as sessmentDa te;
  51           }
  52           
  53   }