Sha256: 2edbf564494622c93cae9e73a415062153e9bd3eb72eedcfae8617614c23619a

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

require 'mspire/cv/paramable'

module Mspire
  class Mzml

    # need to call to_xml_definition (or use
    # Mspire::Mzml::ReferenceableParamGroupList.list_xml) to get the xml for the
    # object itself (and not a reference).  Merely callying #to_xml will
    # result in a referenceableParamGroupRef being created.
    class ReferenceableParamGroup
      include Mspire::CV::Paramable

      attr_accessor :id

      def initialize(id, opts={params: []} )
        @id = id
        describe!(*opts[:params])
      end

      def to_xml(builder)
        builder.referenceableParamGroupRef(ref: @id)
        builder
      end

      def to_xml_definition(builder)
        builder.referenceableParamGroup(id: @id) do |fc_n|
          @params.each {|obj| obj.to_xml(fc_n) }
        end
        builder
      end

      def self.list_xml(objs, builder)
        builder.referenceableParamGroupList(count: objs.size) do |rpgl_n|
          objs.each {|obj| obj.to_xml_definition(rpgl_n) }
        end
        builder
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mspire-0.7.5 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.7.4 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.7.3 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.7.2 lib/mspire/mzml/referenceable_param_group.rb