92. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/10/2017 1:01:45 PM Central 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.

92.1 Files compared

# Location File Last Modified
1 C:\AraxisMergeCompare\Pri_un\IV-ehmp_cif\MIXCommon\main\src\java\gov\va\med\imaging\mix\webservices\rest\types\v1 CodingType.java Thu Jun 29 17:22:01 2017 UTC
2 C:\AraxisMergeCompare\Pri_re\IV-ehmp_cif\MIXCommon\main\src\java\gov\va\med\imaging\mix\webservices\rest\types\v1 CodingType.java Thu Jul 6 15:03:58 2017 UTC

92.2 Comparison summary

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

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

92.4 Active regular expressions

No regular expressions were active.

92.5 Comparison detail

  1   /**
  2    * 
  3    */
  4   package go v.va.med.i maging.mix .webservic es.rest.ty pes.v1;
  5  
  6   import jav ax.xml.bin d.annotati on.XmlRoot Element;
  7  
  8   /**
  9    * @author   DNS  TITTOC
  10    *
  11    */
  12   @XmlRootEl ement
  13   public cla ss CodingT ype
  14   {            
  15           pu blic Codin gType(Stri ng system,  String co de, String  display)
  16           {
  17                    this .system =  system;
  18                    this .code = co de;
  19                    this .display =  display;
  20           }
  21           
  22           pu blic Strin g getSyste m() {
  23                    retu rn system;
  24           }
  25  
  26           pu blic void  setSystem( String sys tem) {
  27                    this .system =  system;
  28           }
  29  
  30           pu blic Strin g getCode( ) {
  31                    retu rn code;
  32           }
  33  
  34           pu blic void  setCode(St ring code)  {
  35                    this .code = co de;
  36           }
  37  
  38           pu blic Strin g getDispl ay() {
  39                    retu rn display ;
  40           }
  41  
  42           pu blic void  setDisplay (String di splay) {
  43                    this .display =  display;
  44           }
  45  
  46           pr otected St ring syste m;
  47           pr otected St ring code;
  48           pr otected St ring displ ay;
  49           
  50   }