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

72.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\ui\model AttachmentForm.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 AttachmentForm.java Mon Jun 10 19:19:21 2019 UTC

72.2 Comparison summary

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

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

72.4 Active regular expressions

No regular expressions were active.

72.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 Attachm entForm ex tends Form  {
  16  
  17           pr ivate Stri ng name;
  18           pr ivate Term Type type;
  19           pr ivate Date  date;
  20           pr ivate byte [] data;
  21           pr ivate Inte ger length ;
  22  
  23           pu blic Strin g getName( ) {
  24                    retu rn name;
  25           }
  26  
  27           pu blic void  setName(St ring name)  {
  28                    this .name = na me;
  29           }
  30  
  31           pu blic TermT ype getTyp e() {
  32                    retu rn type;
  33           }
  34  
  35           pu blic void  setType(Te rmType typ e) {
  36                    this .type = ty pe;
  37           }
  38  
  39           pu blic Date  getDate()  {
  40                    retu rn date;
  41           }
  42  
  43           pu blic void  setDate(Da te date) {
  44                    this .date = da te;
  45           }
  46  
  47           pu blic byte[ ] getData( ) {
  48                    retu rn data;
  49           }
  50  
  51           pu blic void  setData(by te[] data)  {
  52                    this .data = da ta;
  53           }
  54  
  55           pu blic Integ er getLeng th() {
  56                    retu rn this.le ngth;
  57           }
  58  
  59           pu blic void  setLength( Integer le ngth) {
  60                    this .length =  length;
  61           }
  62   }