172. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/11/2019 10:54:13 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.

172.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\model\lookup AbstractCode.java Wed May 29 15:26:04 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\model\lookup AbstractCode.java Mon Jun 10 19:22:24 2019 UTC

172.2 Comparison summary

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

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

172.4 Active regular expressions

No regular expressions were active.

172.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2005 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4  
  5   package go v.va.med.f w.model.lo okup;
  6  
  7   import org .apache.co mmons.lang .enums.Enu m;
  8  
  9   /**
  10    * Super c lass for l ookup cons tants. Sub classes wi ll define  constants  that
  11    * subclas s from thi s.
  12    * 
  13    * Created  Aug 8, 20 05 1:22:10  PM
  14    * 
  15    * @author   DNS
  16    */
  17   public cla ss Abstrac tCode exte nds Enum {
  18  
  19           /* *
  20            *  An instan ce of seri alVersionU ID
  21            * /
  22           pr ivate stat ic final l ong serial VersionUID  = 1982034 1281355707 24L;
  23  
  24           pr ivate Stri ng alias =  null;
  25  
  26           pr otected Ab stractCode (String co de) {
  27                    this (code, nul l);
  28           }
  29  
  30           pr otected Ab stractCode (String co de, String  alias) {
  31                    supe r(code);
  32                    this .alias = a lias;
  33           }
  34  
  35           pr otected st atic Abstr actCode ge tCode(Clas s clazz, S tring code ) {
  36                    Abst ractCode o bj = (Abst ractCode)  getEnum(cl azz, code) ;
  37                    if ( obj == nul l)
  38                             throw  new Illega lArgumentE xception(" Unknown co de: " + co de + " for  class: "
  39                                               + clazz.ge tName());
  40                    retu rn obj;
  41           }
  42  
  43           pu blic Strin g getCode( ) {
  44                    retu rn getName ();
  45           }
  46  
  47           pu blic Strin g getAlias () {
  48                    retu rn this.al ias;
  49           }
  50  
  51           pu blic Strin g toString () {
  52                    retu rn "Typed  Code value  [" + getN ame() + "] ";
  53           }
  54   }