Module: Chemicalml::Cml::Base::Alternative

Included in:
Schema24::Alternative
Defined in:
lib/chemicalml/cml/base/alternative.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
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/chemicalml/cml/base/alternative.rb', line 7

def self.included(klass)
  klass.class_eval do
    include Chemicalml::Cml::Role::Alternative

    attribute :id, :string
    attribute :convention, :string
    attribute :alternative_type, :string
    attribute :type, :string
    attribute :content, :string

    xml do
      namespace Chemicalml::Cml::Namespace
      root 'alternative'
      map_attribute 'id', to: :id
      map_attribute 'convention', to: :convention
      map_attribute 'alternativeType', to: :alternative_type
      map_attribute 'type', to: :type
      map_content to: :content
    end
    key_value do
      map 'id', to: :id
      map 'convention', to: :convention
      map 'alternativeType', to: :alternative_type
      map 'type', to: :type
    end
  end
end