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

352.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 SimpleRuleParameterNameAware.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 SimpleRuleParameterNameAware.java Wed Dec 12 19:46:45 2018 UTC

352.2 Comparison summary

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

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

352.4 Active regular expressions

No regular expressions were active.

352.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   import gov .va.med.fw .rule.Rule ParameterN ameAware;
  7  
  8   // Java cl asses
  9  
  10   // Library  classes
  11  
  12   // Framewo rk classes
  13  
  14   // EDB cla sses
  15  
  16   /**
  17    * Project : Framewor k
  18    * 
  19    * @author   DN S
  20    * @versio n 1.0
  21    */
  22   public cla ss SimpleR uleParamet erNameAwar e implemen ts RulePar ameterName Aware {
  23  
  24           /* *
  25            *  An instan ce of seri alVersionU ID
  26            * /
  27           pr ivate stat ic final l ong serial VersionUID  = -280150 1752887139 722L;
  28  
  29           /* *
  30            *  A name us ed as a va riable rep resenting  this rule  input a ru le engine
  31            *  memory. T his name i s used to  insert thi s rule inp ut into a  rule engin e's
  32            *  agenda.
  33            * /
  34           pr ivate Stri ng input =  null;
  35           pr ivate Stri ng output  = null;
  36  
  37           /* *
  38            *  A default  construct or
  39            * /
  40           pu blic Simpl eRuleParam eterNameAw are() {
  41                    supe r();
  42           }
  43  
  44           /* *
  45            *  Returns a  variable  name of an  out param eter set d uring the  execution  of a
  46            *  rule in a  rule engi ne memory.
  47            *  
  48            *  @return R eturns the  name.
  49            * /
  50           pu blic Strin g getOutpu tName() {
  51                    retu rn output;
  52           }
  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                    this .output =  name;
  63           }
  64  
  65           /* *
  66            *  Returns a  name used  to insert  this rule  wrapper c lass into  a rule eng ine
  67            *  memory.
  68            *  
  69            *  @return R eturns the  name.
  70            * /
  71           pu blic Strin g getInput Name() {
  72                    retu rn input;
  73           }
  74  
  75           /* *
  76            *  Sets a na me used to  insert th is rule wr apper clas s into a r ule engine
  77            *  memory.
  78            *  
  79            *  @param va lue
  80            *              A name u sed as a v ariable na me in ILOG 's agenda.
  81            * /
  82           pu blic void  setInputNa me(String  value) {
  83                    inpu t = value;
  84           }
  85   }