Class: WSDL::XMLSchema::MinExclusive

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

Instance Attribute Summary

Attributes inherited from Info

#id, #parent, #root

Instance Method Summary collapse

Methods inherited from Info

#inspect, #parse_epilogue

Constructor Details

#initializeMinExclusive

Returns a new instance of MinExclusive.



17
18
19
# File 'lib/wsdl/xmlSchema/minexclusive.rb', line 17

def initialize
  super
end

Instance Method Details

#parse_attr(attr, value) ⇒ Object



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

def parse_attr(attr, value)
  case attr
  when FixedAttrName
    parent.fixed[:minexclusive] = to_boolean(value)
  when ValueAttrName
    parent.minexclusive = value.source
  end
end

#parse_element(element) ⇒ Object



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

def parse_element(element)
  nil
end