1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
=begin
WSDL4R - XMLSchema complexType definition for WSDL.
Copyright (C) 2002, 2003 NAKAMURA Hiroshi.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PRATICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 675 Mass
Ave, Cambridge, MA 02139, USA.
=end
require 'wsdl/info'
require 'wsdl/xmlSchema/content'
module WSDL
module XMLSchema
class ComplexType < Info
attr_accessor :name
attr_accessor :complexContent
attr_accessor :content
attr_reader :attributes
def initialize( name = nil )
super()
@name = name
@complexContent = nil
@content = nil
@attributes = NamedElements.new
end
def targetNamespace
parent.targetNamespace
end
def eachContent
if content
content.each do | item |
yield( item )
end
end
end
def eachElement
if content
content.elements.each do | name, element |
yield( name, element )
end
end
end
def getElement( name )
@content.elements.each do | key, element |
return element if name == key
end
nil
end
def setSequenceElements( elements )
@content = Content.new
@content.type = 'sequence'
elements.each do | element |
@content << element
end
end
def setAllElements( elements )
@content = Content.new
@content.type = 'all'
elements.each do | element |
@content << element
end
end
def parseElement( element )
case element
when AllName, SequenceName, ChoiceName
@content = Content.new
@content.type = element.name
@content
when ComplexContentName
@complexContent = ComplexContent.new
@complexContent
when AttributeName
o = Attribute.new
@attributes << o
o
else
nil
end
end
def parseAttr( attr, value )
case attr
when NameAttrName
@name = XSD::QName.new( targetNamespace, value )
else
raise WSDLParser::UnknownAttributeError.new( "Unknown attr #{ attr }." )
end
end
end
end
end
|