Changes between Version 24 and Version 25 of dialogmanager


Ignore:
Timestamp:
10/04/23 16:20:02 (17 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • dialogmanager

    v24 v25  
    103103{{{ {"NameOfFunction":[val1, val2, val3....] } }}}
    104104
     105NameOfFunction is the name of a java class that implements the UpdateFunction class.
     106The arguments provided here are the CONSTRUCTOR arguments for NameOfFunction.
    105107
    106 
    107 NameOfFunction is the name of a java class that implements the UpdateFunction class.
    108 This class implements a function {{{ Parameters call(Parameters parameters) }}}
    109 
    110 
    111 
    112 An update function has access to all parameters and can change any of them. But generally it is good practice to only use/change parameters provided in the arguments. In above case, it would use
     108To evaluate, the function {{{call(Parameters parameters) }}} is called, and that call returns an updated {{{Parameters}}} value. An update function has access to all parameters and can change any of them. But generally it is good practice to only use/change parameters provided in the constructor. In above case, it would use
    113109
    114110