summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-26 16:01:31 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-26 16:01:31 +0000
commit182a95f96b95b6d7b7e2741c63b6c3a8c112fb5e (patch)
tree8c3aeea9dbb53e6f4f7e43caa8401d34152bdc4e
parent7d071c442bfa03441ad4cd6b8ae26682cc93ce33 (diff)
* lib/wsdl/xmlSchema/complexContent.rb: missing
ComplexContent#elementformdefault method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/wsdl/xmlSchema/complexContent.rb4
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bf83e6bef4..e8528a1314 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Nov 27 00:56:13 2005 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
+
+ * lib/wsdl/xmlSchema/complexContent.rb: missing
+ ComplexContent#elementformdefault method.
+
Sat Nov 26 19:57:45 2005 WATANABE Hirofumi <eban@ruby-lang.org>
* dln.c (conv_to_posix_path): should initialize posix.
diff --git a/lib/wsdl/xmlSchema/complexContent.rb b/lib/wsdl/xmlSchema/complexContent.rb
index eddb52f5ef..f7fb6c16b4 100644
--- a/lib/wsdl/xmlSchema/complexContent.rb
+++ b/lib/wsdl/xmlSchema/complexContent.rb
@@ -33,6 +33,10 @@ class ComplexContent < Info
parent.targetnamespace
end
+ def elementformdefault
+ parent.elementformdefault
+ end
+
def basetype
@basetype ||= root.collect_complextypes[@base]
end