355. EPMO Open Source Coordination Office Redaction File Detail Report

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

355.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule\impl SimpleValidatableRule.java Fri Dec 7 17:36:36 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule\impl SimpleValidatableRule.java Wed Dec 12 19:46:45 2018 UTC

355.2 Comparison summary

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

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

355.4 Active regular expressions

No regular expressions were active.

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