247. EPMO Open Source Coordination Office Redaction File Detail Report

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

247.1 Files compared

# Location File Last Modified
1 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule\impl SimpleValidatableRule.java Wed May 29 15:26:14 2019 UTC
2 HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\rule\impl SimpleValidatableRule.java Mon Jun 10 19:27:47 2019 UTC

247.2 Comparison summary

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

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

247.4 Active regular expressions

No regular expressions were active.

247.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule.imp l;
  5  
  6   // Java cl asses
  7  
  8   // Library  classes
  9  
  10   // Framewo rk classes
  11   import gov .va.med.fw .rule.Rule DataAware;
  12   import gov .va.med.fw .rule.Rule Parameters ;
  13   import gov .va.med.fw .validatio n.Validata ble;
  14  
  15   // EDB cla sses
  16  
  17   /**
  18    * Project : Framewor k
  19    * 
  20    * @author   DN S
  21    * @versio n 1.0
  22    */
  23   public cla ss SimpleV alidatable Rule imple ments Vali datable {
  24  
  25           pr ivate Stri ng validat ionMode =  null;
  26           pr ivate Rule Parameters  ruleParam eters = nu ll;
  27           pr ivate Rule DataAware  ruleDataAw are = null ;
  28  
  29           /* *
  30            *  A default  construct or
  31            * /
  32           pu blic Simpl eValidatab leRule(Str ing mode,  RuleParame ters param eters, Rul eDataAware  data) {
  33                    supe r();
  34                    this .validatio nMode = mo de;
  35                    this .ruleParam eters = pa rameters;
  36                    this .ruleDataA ware = dat a;
  37           }
  38  
  39           /* *
  40            *  @see gov. va.med.fw. validation .Validatab le#getVali dationMode ()
  41            * /
  42           pu blic Strin g getValid ationMode( ) {
  43                    retu rn this.va lidationMo de;
  44           }
  45  
  46           pu blic RuleP arameters  getRulePar ameters()  {
  47                    retu rn rulePar ameters;
  48           }
  49  
  50           pu blic RuleD ataAware g etRuleData Aware() {
  51                    retu rn ruleDat aAware;
  52           }
  53   }