QuML players should provide implementation for the library methods which can be used in response, template and outcome processing of questions and question sets.
Returns the value of a response variable. If no response variable is found or if the value is not set, NULL value will be returned.
Parameters:
- name of the response variable
Returns:
- value of the response variable
Returns the value of a outcome variable. If no outcome variable is found or if the value is not set, NULL value will be returned.
Parameters:
- name of the outcome variable
Returns:
- value of the outcome variable
Sets the specified value for specified outcome variable.
Parameters:
- name of the outcome variable
- value to be set for the specified outcome variable
Returns:
- true, if the outcome variable is updated successfully
- false, if the outcome variable is not updated, e.g.: if variable is not declared or if the data type of the value does not match with the declaration
Returns the value of a template variable. If no template variable is found or if the value is not set, NULL value will be returned.
Parameters:
- name of the template variable
Returns:
- value of the template variable
Sets the specified value for specified template variable.
Parameters:
- name of the template variable
- value to be set for the specified template variable
Returns:
- true, if the template variable is updated successfully
- false, if the template variable is not updated, e.g.: if variable is not declared or if the data type of the value does not match with the declaration
Compares the value of response variables with the correct response value configured in the response declaration. If values of all variables match with the correct response, the outcome variable SCORE is set to 1.0, else if the values do not match or any of the variables do not have correct response definition, SCORE is set to 0.0. If no response variables are defined, SCORE is set to NULL.
Returns:
- the value of outcome variable SCORE - either 1.0, 0.0 or NULL
Sets the value of outcome variable SCORE using mapping and areaMapping configuration of response variables provided in the response declaration. If mapping data is not present for any of the response variable, the response variable is not used for computing the score. Optionally if a mapping config is provided, other outcome variable values are also set using the mapping config.
Parameters:
- mappingConfig: optional parameter to set values of outcome variables other than SCORE
Sets the value of outcome variable SCORE using matchTemplate configuration passed as input to the method. Optionally if a mapping config is provided, other outcome variable values are also set using the mapping config.
Parameters:
- matchTemplateConfig: required config to set the value of outcome variable SCORE based on the values of one or more template variables
- mappingConfig: optional parameter to set values of outcome variables other than SCORE
Returns the identifiers of question sets that are members of the question set.
Returns:
- list of question set identifiers, NULL if the question set do not have any member sets
Returns the identifiers of questions that are members of the question set.
Returns:
- list of question identifiers, NULL if the question set do not have any member questions
Returns a map of outcome variables and their values for the specified question set identifier. The question set should be a member of the current question set.
Parameters:
- identifier of the question set which is a member of the current question set
Returns:
- map of outcome variables and values of the specified question set, NULL if the question set is not a member of the current question set
Returns the time spent (in milliseconds) for the specified question set identifier. The question set should be a member of the current question set.
Parameters:
- identifier of the question set which is a member of the current question set
Returns:
- duration of the specified set in the current session, NULL if the question set is not a member of the current question set or if the question set is not attempted by the user in the current session
Returns a map of outcome variables and their values for the specified question identifier. The question should be a member of the current question set.
Parameters:
- identifier of the question which is a member of the current question set
Returns:
- map of outcome variables and values of the specified question, NULL if the question is not a member of the current question set
Returns a map of response variables (including built-in variables numAttempts & duration) and their values for the specified question identifier. The question should be a member of the current question set.
Parameters:
- identifier of the question which is a member of the current question set
Returns:
- map of response variables and values of the specified question, NULL if the question is not a member of the current question set
Returns the value of a outcome variable. If no outcome variable is found or if the value is not set, NULL value will be returned.
Parameters:
- name of the outcome variable
Returns:
- value of the outcome variable
Sets the specified value for specified outcome variable.
Parameters:
- name of the outcome variable
- value to be set for the specified outcome variable
Returns:
- true, if the outcome variable is updated successfully
- false, if the outcome variable is not updated, e.g.: if variable is not declared or if the data type of the value does not match with the declaration