Class: WSDL::XMLSchema::SimpleRestriction

Inherits:
Info
  • Object
show all
Defined in:
lib/wsdl/xmlSchema/simpleRestriction.rb

Instance Attribute Summary collapse

Attributes inherited from Info

#id, #parent, #root

Instance Method Summary collapse

Methods inherited from Info

#inspect, #parse_epilogue

Constructor Details

#initializeSimpleRestriction

Returns a new instance of SimpleRestriction.



23
24
25
26
27
28
29
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 23

def initialize
  super
  @base = nil
  @enumeration = []   # NamedElements?
  @length = nil
  @pattern = nil
end

Instance Attribute Details

#baseObject (readonly)

Returns the value of attribute base



18
19
20
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 18

def base
  @base
end

#enumerationObject (readonly)

Returns the value of attribute enumeration



19
20
21
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 19

def enumeration
  @enumeration
end

#lengthObject

Returns the value of attribute length



20
21
22
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 20

def length
  @length
end

#patternObject

Returns the value of attribute pattern



21
22
23
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 21

def pattern
  @pattern
end

Instance Method Details

#parse_attr(attr, value) ⇒ Object



49
50
51
52
53
54
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 49

def parse_attr(attr, value)
  case attr
  when BaseAttrName
    @base = value
  end
end

#parse_element(element) ⇒ Object



38
39
40
41
42
43
44
45
46
47
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 38

def parse_element(element)
  case element
  when EnumerationName
    Enumeration.new   # just a parsing handler
  when LengthName
    Length.new   # just a parsing handler
  when PatternName
    Pattern.new   # just a parsing handler
  end
end

#valid?(value) ⇒ Boolean

Returns:

  • (Boolean)


31
32
33
34
35
36
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 31

def valid?(value)
  return false unless check_restriction(value)
  return false unless check_length(value)
  return false unless check_pattern(value)
  true
end