6. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 11/9/2017 4:31:01 PM Central 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.

6.1 Files compared

# Location File Last Modified
1 PPS-N_B397.zip\PPS-N_B397\PPS-N_B397\PS_PPS_common\src\main\java\gov\va\med\pharmacy\peps\common\vo\datafield ListOptionField.java Thu Nov 9 15:02:32 2017 UTC
2 PPS-N_B397.zip\PPS-N_B397\PPS-N_B397\PS_PPS_common\src\main\java\gov\va\med\pharmacy\peps\common\vo\datafield ListOptionField.java Thu Nov 9 19:29:47 2017 UTC

6.2 Comparison summary

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

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

6.4 Active regular expressions

No regular expressions were active.

6.5 Comparison detail

  1   package go v.va.med.p harmacy.pe ps.common. vo.datafie ld;
  2  
  3   /**
  4    * This cl ass is a t ypical poj o represen ting a bas ic option  for front- end select  dropdowns .
  5    * It exis ts only to  provide t he ability  to presen t a displa y value th at is diff erent that  
  6    * interna l value in  the dropd own.
  7    *  
  8    * @author   DN S      EdgecK
  9    *
  10    */
  11   public cla ss ListOpt ionField {
  12  
  13           pr ivate Stri ng interna lValue;
  14           pr ivate Stri ng display Value;
  15           
  16           
  17           //  Construct ors
  18           /* *
  19            *  Default c onstructor
  20            * /
  21           pu blic ListO ptionField () {
  22           }
  23           /* *
  24            *  Full cons tructor
  25            *  
  26            *  @param in ternalValu e
  27            *  @param di splayValue
  28            * /
  29           pu blic ListO ptionField (String in ternalValu e, String  displayVal ue) {
  30                    this .internalV alue = int ernalValue ;
  31                    this .displayVa lue = disp layValue;
  32           }
  33           
  34           
  35           //  Accessors /Mutators
  36           /* *
  37            *  @return
  38            * /
  39           pu blic Strin g getInter nalValue()  {
  40                    retu rn interna lValue;
  41           }
  42           /* *
  43            *  @param in ternalValu e
  44            * /
  45           pu blic void  setInterna lValue(Str ing intern alValue) {
  46                    this .internalV alue = int ernalValue ;
  47           }
  48           /* *
  49            *  @return
  50            * /
  51           pu blic Strin g getDispl ayValue()  {
  52                    retu rn display Value;
  53           }
  54           /* *
  55            *  @param di splayValue
  56            * /
  57           pu blic void  setDisplay Value(Stri ng display Value) {
  58                    this .displayVa lue = disp layValue;
  59           }
  60           
  61   }