Module: Chemicalml::Cml::Base::RelatedEntry

Included in:
Schema24::RelatedEntry
Defined in:
lib/chemicalml/cml/base/related_entry.rb

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/chemicalml/cml/base/related_entry.rb', line 7

def self.included(klass)
  klass.class_eval do
    include Chemicalml::Cml::Role::RelatedEntry
    attribute :related_entry_type, :string
    attribute :href, :string
    attribute :content, :string

    xml do
      namespace Chemicalml::Cml::Namespace
      root "relatedEntry"
      map_attribute "relatedEntryType", to: :related_entry_type
      map_attribute "href", to: :href
      map_content to: :content
    end
  end
end