Sha256: 4415869de5b8a581d3c3560b82b095114bc5f4961ca1f5694bcc15ab0bb698b2

Contents?: true

Size: 1.22 KB

Versions: 15

Compression:

Stored size: 1.22 KB

Contents

# encoding: ASCII-8BIT
# WSDL4R - XMLSchema attributeGroup definition for WSDL.
# 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 AttributeGroup < Info
  include Ref

  attr_writer :name	# required
  attr_writer :attributes

  attr_reader_ref :name
  attr_reader_ref :attributes

  def initialize
    super
    @name = nil
    @attributes = nil
    @ref = nil
    @refelement = nil
  end

  def targetnamespace
    parent.targetnamespace
  end

  def parse_element(element)
    case element
    when AttributeName
      @attributes ||= XSD::NamedElements.new
      o = Attribute.new
      @attributes << o
      o
    end
  end

  def parse_attr(attr, value)
    case attr
    when NameAttrName
      @name = XSD::QName.new(targetnamespace, value.source)
    when RefAttrName
      @ref = value
    else
      nil
    end
  end

private

  def refelement
    @refelement ||= root.collect_attributegroups[@ref]
  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/attributeGroup.rb
rtiss_soap4r-1.6.1 lib/wsdl/xmlSchema/attributeGroup.rb
rtiss_soap4r-1.6.0 lib/wsdl/xmlSchema/attributeGroup.rb
eSpace_soap4r-1.5.8 lib/wsdl/xmlSchema/attributeGroup.rb
soap4r-ruby19-1.5.9 lib/wsdl/xmlSchema/attributeGroup.rb
tomdz-soap4r-1.5.8.20120202093209 lib/wsdl/xmlSchema/attributeGroup.rb
soap5r-2.0.3 lib/wsdl/xmlSchema/attributeGroup.rb
soap5r-2.0.2 lib/wsdl/xmlSchema/attributeGroup.rb
soap5r-2.0.1 lib/wsdl/xmlSchema/attributeGroup.rb
soap5r-2.0.0 lib/wsdl/xmlSchema/attributeGroup.rb
soap5r-2.0.0.20120130130121 lib/wsdl/xmlSchema/attributeGroup.rb
soap4r-sgonyea-1.5.9 lib/wsdl/xmlSchema/attributeGroup.rb
sunteya-soap4r-1.5.8.0 lib/wsdl/xmlSchema/attributeGroup.rb
tomdz-soap4r-1.5.8.20111103171510 lib/wsdl/xmlSchema/attributeGroup.rb
rubyjedi-soap4r-1.5.8.20100619003610 lib/wsdl/xmlSchema/attributeGroup.rb