Class: Handsoap::Parser::Operation
- Inherits:
- 
      Object
      
        - Object
- Handsoap::Parser::Operation
 
- Defined in:
- lib/handsoap/parser.rb
Instance Attribute Summary collapse
- 
  
    
      #input  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute input. 
- 
  
    
      #name  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute name. 
- 
  
    
      #output  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute output. 
Instance Method Summary collapse
- 
  
    
      #initialize(name, optional = {})  ⇒ Operation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Operation. 
Constructor Details
#initialize(name, optional = {}) ⇒ Operation
Returns a new instance of Operation.
| 49 50 51 52 53 | # File 'lib/handsoap/parser.rb', line 49 def initialize(name, optional = {}) @name = name @input = optional[:input] @output = optional[:output] end | 
Instance Attribute Details
#input ⇒ Object
Returns the value of attribute input.
| 47 48 49 | # File 'lib/handsoap/parser.rb', line 47 def input @input end | 
#name ⇒ Object
Returns the value of attribute name.
| 47 48 49 | # File 'lib/handsoap/parser.rb', line 47 def name @name end | 
#output ⇒ Object
Returns the value of attribute output.
| 47 48 49 | # File 'lib/handsoap/parser.rb', line 47 def output @output end |