mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ab31bf0d4d
commit
5548c7bff2
74 changed files with 5479 additions and 0 deletions
48
lib/wsdl/xmlSchema/simpleRestriction.rb
Normal file
48
lib/wsdl/xmlSchema/simpleRestriction.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
# WSDL4R - XMLSchema simpleType 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/info'
|
||||
require 'xsd/namedelements'
|
||||
|
||||
|
||||
module WSDL
|
||||
module XMLSchema
|
||||
|
||||
|
||||
class SimpleRestriction < Info
|
||||
attr_reader :base
|
||||
attr_reader :enumeration
|
||||
|
||||
def initialize
|
||||
super
|
||||
@base = nil
|
||||
@enumeration = [] # NamedElements?
|
||||
end
|
||||
|
||||
def valid?(value)
|
||||
@enumeration.include?(value)
|
||||
end
|
||||
|
||||
def parse_element(element)
|
||||
case element
|
||||
when EnumerationName
|
||||
Enumeration.new # just a parsing handler
|
||||
end
|
||||
end
|
||||
|
||||
def parse_attr(attr, value)
|
||||
case attr
|
||||
when BaseAttrName
|
||||
@base = value
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue