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

254.1 Files compared

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

254.2 Comparison summary

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

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

254.4 Active regular expressions

No regular expressions were active.

254.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;
  5  
  6   // Java cl asses
  7   import jav a.io.Seria lizable;
  8  
  9   // Library  classes
  10  
  11   // Framewo rk classes
  12  
  13   // EDB cla sses
  14  
  15   /**
  16    * Provide s generic  methods to  set/get i nput and o utput vari able name  of a rule
  17    * paramet er.
  18    * 
  19    * Project : Framewor k
  20    * 
  21    * @author   DN S
  22    * @versio n 1.0
  23    */
  24   public int erface Rul eParameter NameAware  extends Se rializable  {
  25  
  26           pu blic stati c final St ring DEFAU LT_IN_PARA M_NAME = " in";
  27           pu blic stati c final St ring DEFAU LT_OUT_PAR AM_NAME =  "out";
  28  
  29           /* *
  30            *  Returns a  name used  to insert  this rule  wrapper c lass into  a rule eng ine
  31            *  memory.
  32            *  
  33            *  @return R eturns the  name.
  34            * /
  35           pu blic Strin g getInput Name();
  36  
  37           /* *
  38            *  Sets a na me used to  insert th is rule wr apper clas s into a r ule engine
  39            *  memory.
  40            *  
  41            *  @param na me
  42            *              the inpu t name.
  43            * /
  44           pu blic void  setInputNa me(String  name);
  45  
  46           /* *
  47            *  Returns a  variable  name of an  out param eter set d uring the  execution  of a
  48            *  rule in a  rule engi ne memory.
  49            *  
  50            *  @return R eturns the  name.
  51            * /
  52           pu blic Strin g getOutpu tName();
  53  
  54           /* *
  55            *  Sets a va riable nam e of an ou t paramete r set duri ng the exe cution of  a
  56            *  rule in a  rule engi ne memory.
  57            *  
  58            *  @param na me
  59            *              the outp ut name.
  60            * /
  61           pu blic void  setOutputN ame(String  name);
  62   }