Sha256: 539a2a88696c4a8fa52d49624c61598ab0aa5a57f85cbff98bf4b0ef699ae9da
Contents?: true
Size: 1.22 KB
Versions: 23
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/xml_schema/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
23 entries across 23 versions & 1 rubygems