Files

Class Index [+]

Quicksearch

WSDL::XMLSchema::Sequence

Attributes

any[R]

Public Class Methods

new() click to toggle source
    # File lib/wsdl/xmlSchema/sequence.rb, line 19
19:   def initialize
20:     super()
21:     @any = nil
22:   end

Public Instance Methods

have_any?() click to toggle source
    # File lib/wsdl/xmlSchema/sequence.rb, line 24
24:   def have_any?
25:     !!@any
26:   end
parse_element(element) click to toggle source
    # 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.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.