Class: WSDL::XMLSchema::Length
  
  
  
  
  
    - Inherits:
- 
      Info
      
        
          - Object
- Info
- WSDL::XMLSchema::Length
 show all
    - Defined in:
- lib/wsdl/xmlSchema/length.rb
 
  Instance Attribute Summary
  
  Attributes inherited from Info
  #id, #parent, #root
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Info
  #inspect, #parse_epilogue
  Constructor Details
  
    
  
  
    #initialize  ⇒ Length 
  
  
  
  
    
Returns a new instance of Length.
   
 
  
  
    | 
17
18
19 | # File 'lib/wsdl/xmlSchema/length.rb', line 17
def initialize
  super
end | 
 
  
 
  
    Instance Method Details
    
      
  
  
    #parse_attr(attr, value)  ⇒ Object 
  
  
  
  
    | 
25
26
27
28
29
30 | # File 'lib/wsdl/xmlSchema/length.rb', line 25
def parse_attr(attr, value)
  case attr
  when ValueAttrName
    value.source
  end
end | 
 
    
      
  
  
    #parse_element(element)  ⇒ Object 
  
  
  
  
    | 
21
22
23 | # File 'lib/wsdl/xmlSchema/length.rb', line 21
def parse_element(element)
  nil
end |