Class: WSDL::XMLSchema::Choice
  
  
  
  
  
    - Inherits:
- 
      Info
      
        
          - Object
- Info
- WSDL::XMLSchema::Choice
 show all
    - Defined in:
- lib/wsdl/xmlSchema/choice.rb
 
  Instance Attribute Summary collapse
  
  
  
  Attributes inherited from Info
  #id, #parent, #root
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Info
  #inspect, #parse_epilogue
  Constructor Details
  
    
  
  
    #initialize  ⇒ Choice 
  
  
  
  
    
Returns a new instance of Choice.
   
 
  
  
    | 
21
22
23
24
25
26 | # File 'lib/wsdl/xmlSchema/choice.rb', line 21
def initialize
  super()
  @minoccurs = '1'
  @maxoccurs = '1'
  @elements = []
end | 
 
  
 
  
    Instance Attribute Details
    
      
      
      
  
  
    #elements  ⇒ Object  
  
  
  
  
    
Returns the value of attribute elements.
   
 
  
  
    | 
19
20
21 | # File 'lib/wsdl/xmlSchema/choice.rb', line 19
def elements
  @elements
end | 
 
    
      
      
      
  
  
    #maxoccurs  ⇒ Object  
  
  
  
  
    
Returns the value of attribute maxoccurs.
   
 
  
  
    | 
18
19
20 | # File 'lib/wsdl/xmlSchema/choice.rb', line 18
def maxoccurs
  @maxoccurs
end | 
 
    
      
      
      
  
  
    #minoccurs  ⇒ Object  
  
  
  
  
    
Returns the value of attribute minoccurs.
   
 
  
  
    | 
17
18
19 | # File 'lib/wsdl/xmlSchema/choice.rb', line 17
def minoccurs
  @minoccurs
end | 
 
    
   
  
    Instance Method Details
    
      
  
  
    #<<(element)  ⇒ Object 
  
  
  
  
    | 
36
37
38 | # File 'lib/wsdl/xmlSchema/choice.rb', line 36
def <<(element)
  @elements << element
end | 
 
    
      
  
  
    | 
32
33
34 | # File 'lib/wsdl/xmlSchema/choice.rb', line 32
def elementformdefault
  parent.elementformdefault
end | 
 
    
      
  
  
    #parse_attr(attr, value)  ⇒ Object 
  
  
  
  
    | 
55
56
57
58
59
60
61
62
63
64 | # File 'lib/wsdl/xmlSchema/choice.rb', line 55
def parse_attr(attr, value)
  case attr
  when MaxOccursAttrName
    @maxoccurs = value.source
  when MinOccursAttrName
    @minoccurs = value.source
  else
    nil
  end
end | 
 
    
      
  
  
    #parse_element(element)  ⇒ Object 
  
  
  
  
    | 
40
41
42
43
44
45
46
47
48
49
50
51
52
53 | # File 'lib/wsdl/xmlSchema/choice.rb', line 40
def parse_element(element)
  case element
  when AnyName
    o = Any.new
    @elements << o
    o
  when ElementName
    o = Element.new
    @elements << o
    o
  else
    nil
  end
end | 
 
    
      
  
  
    #targetnamespace  ⇒ Object 
  
  
  
  
    | 
28
29
30 | # File 'lib/wsdl/xmlSchema/choice.rb', line 28
def targetnamespace
  parent.targetnamespace
end |