Class: Qti::V1::Models::Interactions::StringInteraction

Inherits:
BaseInteraction show all
Defined in:
lib/qti/v1/models/interactions/string_interaction.rb

Instance Attribute Summary

Attributes inherited from BaseInteraction

#node

Attributes inherited from Models::Base

#doc, #manifest, #package_root, #path, #resource

Class Method Summary collapse

Methods inherited from BaseInteraction

#answer_feedback, #canvas_item_feedback, canvas_multiple_fib?, #initialize, maybe_question_type, question_type, #scoring_data_structs, #shuffled?

Methods inherited from Base

#qti_version, #return_inner_content!

Methods inherited from Models::Base

#css_with_single_check, from_path!, #initialize, #parse_html, #parse_xml, #preprocess_xml_doc, #raise_unsupported, #remap_href_path, #sanitize_content!, #xpath_with_single_check

Constructor Details

This class inherits a constructor from Qti::V1::Models::Interactions::BaseInteraction

Class Method Details

.matches(node, parent) ⇒ Object

This will know if a class matches



7
8
9
10
11
# File 'lib/qti/v1/models/interactions/string_interaction.rb', line 7

def self.matches(node, parent)
  matches = node.xpath('.//xmlns:render_fib')
  return false if matches.empty?
  new(node, parent)
end