Class WSDL::XMLSchema::Pattern
In: wsdl/xmlSchema/pattern.rb
Parent: Info

Methods

Public Class methods

[Source]

# File wsdl/xmlSchema/pattern.rb, line 17
  def initialize
    super
  end

Public Instance methods

[Source]

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

[Source]

# File wsdl/xmlSchema/pattern.rb, line 21
  def parse_element(element)
    nil
  end

[Validate]