183. EPMO Open Source Coordination Office Redaction File Detail Report

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

183.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\ui\model CompletedReportUniqueFilterValuesForm.java Fri Dec 7 17:36:28 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\ccht\ui\model CompletedReportUniqueFilterValuesForm.java Thu Dec 13 15:05:36 2018 UTC

183.2 Comparison summary

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

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

183.4 Active regular expressions

No regular expressions were active.

183.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   }