# File lib/wsdl/xmlSchema/sequence.rb, line 24 24: def have_any? 25: !!@any 26: end
# File lib/wsdl/xmlSchema/sequence.rb, line 28 28: def parse_element(element) 29: case element 30: when SequenceName 31: o = Sequence.new 32: @elements << o 33: o 34: when ChoiceName 35: o = Choice.new 36: @elements << o 37: o 38: when GroupName 39: o = Group.new 40: @elements << o 41: o 42: when AnyName 43: @any = Any.new 44: @elements << @any 45: @any 46: else 47: super(element) 48: end 49: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.