Class: WSDL::XMLSchema::Pattern

Inherits:
Info show all
Defined in:
lib/wsdl/xmlSchema/pattern.rb

Instance Attribute Summary

Attributes inherited from Info

#id, #parent, #root

Instance Method Summary collapse

Methods inherited from Info

#inspect, #parse_epilogue

Constructor Details

#initializePattern

Returns a new instance of Pattern.



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

def initialize
  super
end

Instance Method Details

#parse_attr(attr, value) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/wsdl/xmlSchema/pattern.rb', line 26

def parse_attr(attr, value)
  case attr
  when ValueAttrName
    parent.pattern = /\A#{value.source}\z/n
    value.source
  end
end

#parse_element(element) ⇒ Object



22
23
24
# File 'lib/wsdl/xmlSchema/pattern.rb', line 22

def parse_element(element)
  nil
end