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

284.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 AbstractNamedLookup.java Fri Dec 7 17:36:38 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\model\lookup AbstractNamedLookup.java Wed Dec 12 19:46:45 2018 UTC

284.2 Comparison summary

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

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

284.4 Active regular expressions

No regular expressions were active.

284.5 Comparison detail

  1   package go v.va.med.f w.model.lo okup;
  2  
  3   // Java Cl asses
  4  
  5   // Library  Classes
  6   import org .apache.co mmons.lang .builder.T oStringBui lder;
  7  
  8   // Framewo rk 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 NamedLooku p extends  AbstractLo okup imple ments Name dLookup {
  19           pr ivate stat ic final l ong serial VersionUID  = 4545725 9281798235 94L;
  20  
  21           /* *
  22            *  The uniqu e business  name for  this objec t.
  23            *  
  24            *  @hibernat e.property  not-null= "true" ins ert="false " update=" false"
  25            *                        column="N AME" lengt h="80" uni que="true"
  26            * /
  27           pr ivate Stri ng name;
  28  
  29           /* *
  30            *  Default c onstructor .
  31            * /
  32           pu blic Abstr actNamedLo okup() {
  33                    supe r();
  34           }
  35  
  36           /* *
  37            *  Returns t he unique  business n ame for th is object.
  38            *  
  39            *  @return T he unique  business n ame for th is object.
  40            * /
  41           pu blic Strin g getName( ) {
  42                    retu rn this.na me;
  43           }
  44  
  45           /* *
  46            *  @see gov. va.med.fw. model.look up.Lookup# getDescrip tion()
  47            * /
  48           //  public St ring getDe scription( ) {
  49           //  // If a d escription  doesn't e xist, just  return th e name if  one is pre sent
  50           //  if ((supe r.getDescr iption() = = null) &&  getName()  != null)  {
  51           //  return ge tName();
  52           //  }
  53           //  else {
  54           //  return su per.getDes cription() ;
  55           //  }
  56           //  }
  57           /* *
  58            *  @see gov. va.med.fw. model.look up.Abstrac tLookup#fi nalize()
  59            * /
  60           pr otected vo id finaliz e() throws  Throwable  {
  61                    supe r.finalize ();
  62                    if ( this.name  != null) {
  63                             this.s etName(nul l);
  64                    }
  65           }
  66  
  67           /* *
  68            *  @see gov. va.med.fw. model.look up.Abstrac tLookup#bu ildToStrin g(org.apac he.commons .lang.buil der.ToStri ngBuilder)
  69            * /
  70           pr otected vo id buildTo String(ToS tringBuild er builder ) {
  71                    supe r.buildToS tring(buil der);
  72                    buil der.append ("name", t his.name);
  73           }
  74  
  75           /* *
  76            *  Sets the  unique bus iness name  for this  object.
  77            *  
  78            *  @param na me
  79            *              The uniq ue busines s name for  this obje ct.
  80            * /
  81           pu blic void  setName(St ring name)  {
  82                    this .name = na me;
  83           }
  84   }