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
# 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 :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_content to: :content
    end
  end
end