282. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:27 AM 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.

282.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\lookup AbstractNamedActiveLookup.java Fri Dec 7 17:36:36 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\lookup AbstractNamedActiveLookup.java Wed Dec 12 19:46:45 2018 UTC

282.2 Comparison summary

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

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

282.4 Active regular expressions

No regular expressions were active.

282.5 Comparison detail

  1   package go v.va.med.f w.model.lo okup;
  2  
  3   //Java Cla sses
  4  
  5   //Library  Classes
  6   import org .apache.co mmons.lang .builder.T oStringBui lder;
  7  
  8   //Framewor k Classes
  9  
  10   /**
  11    * An abst ract class  that is u sed as a b ase class  for all lo okup entit ies with a
  12    * unique  name
  13    * 
  14    * Project : Framewor k</br> Cre ated on: 1 2:51:08 PM  </br>
  15    * 
  16    * @author   DN S
  17    */
  18   public abs tract clas s Abstract NamedActiv eLookup ex tends Abst ractNamedL ookup {
  19  
  20           /* *
  21            *  
  22            * /
  23           pr ivate stat ic final l ong serial VersionUID  = 1861808 5322405969 05L;
  24           /* *
  25            *  Whether t he object  has been m arked acti ve.
  26            *  
  27            * /
  28           pr ivate bool ean active  = false;
  29  
  30           /* *
  31            *  Default c onstructor .
  32            * /
  33           pu blic Abstr actNamedAc tiveLookup () {
  34                    supe r();
  35           }
  36  
  37           /*
  38            *  (non-Java doc)
  39            *  
  40            *  @see
  41            *  gov.va.me d.esr.comm on.model.l ookup.Code dDescripti onLookup#b uildToStri ng
  42            *  (org.apac he.commons .lang.buil der.ToStri ngBuilder)
  43            * /
  44           pr otected vo id buildTo String(ToS tringBuild er builder ) {
  45                    supe r.buildToS tring(buil der);
  46                    buil der.append ("active",  this.acti ve);
  47           }
  48  
  49           pu blic boole an isActiv e() {
  50                    retu rn active;
  51           }
  52  
  53           pu blic void  setActive( boolean ac tive) {
  54                    this .active =  active;
  55           }
  56   }