diff options
| author | (no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 14:41:10 +0000 |
|---|---|---|
| committer | (no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 14:41:10 +0000 |
| commit | 6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b (patch) | |
| tree | 9baa48b1a2dfad4b0d1d9580248177be8c0e9802 /lib/wsdl/soap | |
| parent | e288c1a551ba155a8e82e8556c1a7ae3a9403527 (diff) | |
| download | ruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.tar.gz ruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.tar.xz ruby-6763c41be301bffbb2a6e8f9b4eb14d5b9dcfe9b.zip | |
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/wsdl/soap')
| -rw-r--r-- | lib/wsdl/soap/element.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/wsdl/soap/element.rb b/lib/wsdl/soap/element.rb new file mode 100644 index 000000000..c39a00d25 --- /dev/null +++ b/lib/wsdl/soap/element.rb @@ -0,0 +1,34 @@ +# WSDL4R - XMLSchema element definition for WSDL. +# Copyright (C) 2004 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/xmlSchema/element' + + +module WSDL +module XMLSchema + + +class Element < Info + def map_as_array? + maxoccurs != '1' + end + + def attributes + @local_complextype.attributes + end + + def each_element + @local_complextype.each_element do |element| + yield(element) + end + end +end + + +end +end |
