mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-29 21:38:49 +01:00
68 lines
1.2 KiB
Ruby
68 lines
1.2 KiB
Ruby
# 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
|