Class: WSDL::XMLSchema::SimpleContent
  
  
  
  
  
    - Inherits:
- 
      Info
      
        
        show all
      
    
    - Defined in:
- lib/wsdl/xmlSchema/simpleContent.rb
 
  Instance Attribute Summary collapse
  
  
  
  Attributes inherited from Info
  #id, #parent, #root
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Info
  #inspect, #parse_attr, #parse_epilogue
  Constructor Details
  
    
  
  
    
Returns a new instance of SimpleContent.
   
 
  
  
    | 
25
26
27
28
29 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 25
def initialize
  super
  @restriction = nil
  @extension = nil
end | 
 
  
 
  
    Instance Attribute Details
    
      
      
      
  
  
    #extension  ⇒ Object  
  
  
  
  
    
Returns the value of attribute extension.
   
 
  
  
    | 
19
20
21 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 19
def extension
  @extension
end | 
 
    
      
      
      
  
  
    #restriction  ⇒ Object  
  
  
  
  
    
Returns the value of attribute restriction.
   
 
  
  
    | 
18
19
20 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 18
def restriction
  @restriction
end | 
 
    
   
  
    Instance Method Details
    
      
  
  
    #attributes  ⇒ Object 
  
  
  
  
    | 
35
36
37 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 35
def attributes
  content.attributes
end | 
 
    
      
  
  
    | 
31
32
33 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 31
def base
  content.base
end | 
 
    
      
  
  
    | 
21
22
23 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 21
def check_lexical_format(value)
  check(value)
end | 
 
    
      
  
  
    #parse_element(element)  ⇒ Object 
  
  
  
 
    
      
  
  
    #targetnamespace  ⇒ Object 
  
  
  
  
    | 
39
40
41 | # File 'lib/wsdl/xmlSchema/simpleContent.rb', line 39
def targetnamespace
  parent.targetnamespace
end |