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

171.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\model\lookup AbstractActiveSortedLookup.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 AbstractActiveSortedLookup.java Tue Jun 11 11:39:48 2019 UTC

171.2 Comparison summary

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

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

171.4 Active regular expressions

No regular expressions were active.

171.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2008 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.model.lo okup;
  5  
  6   import jav ax.xml.bin d.annotati on.XmlTran sient;
  7  
  8   /**
  9    * 
  10    * CISS oh rs_web May  12, 2009
  11    * 
  12    * @author  
D NS
  13    * 
  14    *          This clas s represen ts a basic  lookup th at include s an activ e flag and
  15    *          a sort co lumn.
  16    * 
  17    *          Created b ecause Abs tractActiv eLookup an d Abstract NamedActiv eLookup
  18    *          are exten ded by obj ects mappe d to table s without  the sort_o rder
  19    *          column so  that fiel d was mapp ed as tran sient. Som e of those  object
  20    *          are STD t ables so w e can not  add the so rt_order c olumn to t hem.
  21    */
  22   public abs tract clas s Abstract ActiveSort edLookup e xtends Abs tractLooku p {
  23           pr ivate stat ic final l ong serial VersionUID  = 1898424 5603574912 34L;
  24           
  25           @X mlTransien t
  26           pr ivate bool ean active  = true;
  27           
  28           @X mlTransien t
  29           pr ivate Inte ger sortOr der = null ;
  30  
  31           /* *
  32            *  Default c onstructor .
  33            * /
  34           pu blic Abstr actActiveS ortedLooku p() {
  35                    supe r();
  36           }
  37  
  38           /* *
  39            *  @return t he active
  40            * /
  41           pu blic boole an isActiv e() {
  42                    retu rn active;
  43           }
  44  
  45           /* *
  46            *  @param ac tive
  47            *              the acti ve to set
  48            * /
  49           pu blic void  setActive( boolean ac tive) {
  50                    this .active =  active;
  51           }
  52  
  53           /* *
  54            *  Returns a  value tha t describe s the rela tive posit ion of the  object wh en
  55            *  in a sort ed collect ion.
  56            *  
  57            *  @return A  value tha t describe s the rela tive posit ion of the  object wh en
  58            *          i n a sorted  collectio n.
  59            * /
  60           pu blic Integ er getSort Order() {
  61                    retu rn this.so rtOrder;
  62           }
  63  
  64           /* *
  65            *  Sets a va lue that d escribes t he relativ e position  of the ob ject when  in a
  66            *  sorted co llection.
  67            *  
  68            *  @param so rtOrder
  69            *              A value  that descr ibes the r elative po sition of  the object
  70            *              when in  a sorted c ollection.
  71            * /
  72           pu blic void  setSortOrd er(Integer  sortOrder ) {
  73                    this .sortOrder  = sortOrd er;
  74           }
  75   }