Sha256: 600e1b677cd6289fd9ae520f9a5688857aee001dc20833dc102cb5c64e81bfba

Contents?: true

Size: 1.13 KB

Versions: 12

Compression:

Stored size: 1.13 KB

Contents

require 'mspire/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::Paramable

      attr_accessor :id

      def initialize(id)
        @id = id
        params_init
        yield(self) if block_given?
      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.from_xml(xml)
        obj = self.new(xml[:id])
        obj.describe_from_xml!(xml)
        obj
      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

12 entries across 12 versions & 1 rubygems

Version Path
mspire-0.10.8.0 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.7.3 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.7.2 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.7.1 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.7 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.6 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.5 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.4 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.3 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.2 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.1 lib/mspire/mzml/referenceable_param_group.rb
mspire-0.10.0 lib/mspire/mzml/referenceable_param_group.rb