Class: Qti::V1::Models::Choices::LogicalIdentifierChoice

Inherits:
Base show all
Defined in:
lib/qti/v1/models/choices/logical_identifier_choice.rb

Instance Attribute Summary

Attributes inherited from Models::Base

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

Instance Method Summary collapse

Methods inherited from Base

#qti_version, #return_inner_content!, #sanitize_attributes, #sanitize_attributes_by_node

Methods inherited from Models::Base

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

Constructor Details

#initialize(node, parent) ⇒ LogicalIdentifierChoice

Returns a new instance of LogicalIdentifierChoice.



6
7
8
9
# File 'lib/qti/v1/models/choices/logical_identifier_choice.rb', line 6

def initialize(node, parent)
  @node = node
  copy_paths_from_item(parent)
end

Instance Method Details

#identifierObject



11
12
13
# File 'lib/qti/v1/models/choices/logical_identifier_choice.rb', line 11

def identifier
  @identifier ||= @node.attributes['ident'].value
end

#item_bodyObject



15
16
17
18
19
20
# File 'lib/qti/v1/models/choices/logical_identifier_choice.rb', line 15

def item_body
  @item_body ||= begin
    inner_content = return_inner_content!(content_node)
    sanitize_content!(inner_content)
  end
end