75. EPMO Open Source Coordination Office Redaction File Detail Report

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

75.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\ui\model CompletedReportUniqueFilterValuesForm.java Wed May 29 15:26:10 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\ccht\ui\model CompletedReportUniqueFilterValuesForm.java Mon Jun 10 19:19:44 2019 UTC

75.2 Comparison summary

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

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

75.4 Active regular expressions

No regular expressions were active.

75.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrig ht � 2010  VHA. All r ights rese rved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.c cht.ui.mod el;
  5  
  6   import jav a.util.Arr ayList;
  7   import jav a.util.Lin kedHashMap ;
  8   import jav a.util.Lis t;
  9   import jav a.util.Map ;
  10  
  11   import gov .va.med.fw .ui.model. Form;
  12   import gov .va.med.fw .ui.model. TermType;
  13  
  14   /**
  15    * @author   DNS
  16    */
  17   public cla ss Complet edReportUn iqueFilter ValuesForm  extends F orm {
  18  
  19           pr ivate Stri ng fieldNa me;
  20           pr ivate List <TermType>  values;
  21  
  22           pu blic Compl etedReport UniqueFilt erValuesFo rm(String  fieldName,
  23                             Linked HashMap<St ring, Stri ng> unique Vals) {
  24                    this .fieldName  = fieldNa me;
  25                    this .values =  new ArrayL ist<TermTy pe>(unique Vals.size( ));
  26                    for  (Map.Entry <String, S tring> ent ry : uniqu eVals.entr ySet()) {
  27                             values .add(new T ermType(en try.getVal ue(), entr y.getKey() ));
  28                    }
  29           }
  30  
  31           pu blic Strin g getField Name() {
  32                    retu rn fieldNa me;
  33           }
  34  
  35           pu blic void  setFieldNa me(String  fieldName)  {
  36                    this .fieldName  = fieldNa me;
  37           }
  38  
  39           pu blic List< TermType>  getValues( ) {
  40                    retu rn values;
  41           }
  42  
  43           pu blic void  setValues( List<TermT ype> value s) {
  44                    this .values =  values;
  45           }
  46  
  47   }