Sha256: 768e560ab3428ae2e30106a0deb8aa701c54c47a5d411fd6ac5a54e828816ab7

Contents?: true

Size: 1.97 KB

Versions: 15

Compression:

Stored size: 1.97 KB

Contents

# encoding: ASCII-8BIT
# WSDL4R - XMLSchema group definition.
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'wsdl/info'
require 'wsdl/xmlSchema/ref'


module WSDL
module XMLSchema


class Group < Info
  include Ref

  attr_writer :name	# required
  attr_accessor :maxoccurs
  attr_accessor :minoccurs
  attr_writer :content

  attr_reader_ref :name
  attr_reader_ref :content

  def initialize(name = nil)
    super()
    @name = name
    @maxoccurs = 1
    @minoccurs = 1
    @content = nil
    @ref = nil
    @refelement = nil
  end

  def targetnamespace
    parent.targetnamespace
  end

  def elementformdefault
    parent.elementformdefault
  end

  def parse_element(element)
    case element
    when AllName
      @content = All.new
    when SequenceName
      @content = Sequence.new
    when ChoiceName
      @content = Choice.new
    else
      nil
    end
  end

  def parse_attr(attr, value)
    case attr
    when NameAttrName
      @name = XSD::QName.new(targetnamespace, value.source)
    when RefAttrName
      @ref = value
    when MaxOccursAttrName
      if parent.is_a?(All)
	if value.source != '1'
	  raise Parser::AttributeConstraintError.new(
            "cannot parse #{value} for #{attr}")
	end
      end
      if value.source == 'unbounded'
        @maxoccurs = nil
      else
        @maxoccurs = Integer(value.source)
      end
      value.source
    when MinOccursAttrName
      if parent.is_a?(All)
	unless ['0', '1'].include?(value.source)
	  raise Parser::AttributeConstraintError.new(
            "cannot parse #{value} for #{attr}")
	end
      end
      @minoccurs = Integer(value.source)
    else
      nil
    end
  end

private

  def refelement
    @refelement ||= (@ref ? root.collect_modelgroups[@ref] : nil)
  end
end


end
end

Version data entries

15 entries across 15 versions & 9 rubygems

Version Path
malagant-soap4r-1.5.8.20141127181857 lib/wsdl/xmlSchema/group.rb
rtiss_soap4r-1.6.1 lib/wsdl/xmlSchema/group.rb
rtiss_soap4r-1.6.0 lib/wsdl/xmlSchema/group.rb
eSpace_soap4r-1.5.8 lib/wsdl/xmlSchema/group.rb
soap4r-ruby19-1.5.9 lib/wsdl/xmlSchema/group.rb
tomdz-soap4r-1.5.8.20120202093209 lib/wsdl/xmlSchema/group.rb
soap5r-2.0.3 lib/wsdl/xmlSchema/group.rb
soap5r-2.0.2 lib/wsdl/xmlSchema/group.rb
soap5r-2.0.1 lib/wsdl/xmlSchema/group.rb
soap5r-2.0.0 lib/wsdl/xmlSchema/group.rb
soap5r-2.0.0.20120130130121 lib/wsdl/xmlSchema/group.rb
soap4r-sgonyea-1.5.9 lib/wsdl/xmlSchema/group.rb
sunteya-soap4r-1.5.8.0 lib/wsdl/xmlSchema/group.rb
tomdz-soap4r-1.5.8.20111103171510 lib/wsdl/xmlSchema/group.rb
rubyjedi-soap4r-1.5.8.20100619003610 lib/wsdl/xmlSchema/group.rb