362. EPMO Open Source Coordination Office Redaction File Detail Report

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

362.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 RuleParameterNameAware.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule RuleParameterNameAware.java Wed Dec 12 19:46:45 2018 UTC

362.2 Comparison summary

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

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

362.4 Active regular expressions

No regular expressions were active.

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