120. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:12 PM Eastern Standard 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.

120.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dto CommentTypeDTO.java Thu Dec 14 19:57:10 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\UI\Services\src\main\java\gov\va\genisis2\dto CommentTypeDTO.java Wed Dec 20 22:14:59 2017 UTC

120.2 Comparison summary

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

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

120.4 Active regular expressions

No regular expressions were active.

120.5 Comparison detail

  1   package go v.va.genis is2.dto;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   /**
  6    * Data Tr ansfer Obj ect (DTO)  to transfe r comment  type relat ed details
  7    * 
  8    * @author  P II
  9    *
  10    */
  11   public cla ss Comment TypeDTO im plements S erializabl e {
  12           /* *
  13            *  serialVer sionUID fi eld
  14            * /
  15           pr ivate stat ic final l ong serial VersionUID  = -487767 8704097685 448L;
  16           
  17           /* * The id.  */
  18           pr ivate int  id;
  19           
  20           /* * The desc ription. * /
  21           pr ivate Stri ng descrip tion;
  22  
  23           /* *
  24            *  @return t he id
  25            * /
  26           pu blic int g etId() {
  27                    retu rn id;
  28           }
  29  
  30           /* *
  31            *  @param id
  32            *              the id t o set
  33            * /
  34           pu blic void  setId(int  id) {
  35                    this .id = id;
  36           }
  37  
  38           /* *
  39            *  @return t he descrip tion
  40            * /
  41           pu blic Strin g getDescr iption() {
  42                    retu rn descrip tion;
  43           }
  44  
  45           /* *
  46            *  @param de scription
  47            *              the desc ription to  set
  48            * /
  49           pu blic void  setDescrip tion(Strin g descript ion) {
  50                    this .descripti on = descr iption;
  51           }
  52   }