Class: SOAP::Parser::ParseFrame
Defined Under Namespace
Classes: NodeContainer
Instance Attribute Summary collapse
-
#encodingstyle ⇒ Object
readonly
Returns the value of attribute encodingstyle.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#node ⇒ Object
Returns the value of attribute node.
-
#ns ⇒ Object
readonly
Returns the value of attribute ns.
Instance Method Summary collapse
-
#initialize(ns, name, node, encodingstyle) ⇒ ParseFrame
constructor
A new instance of ParseFrame.
Constructor Details
#initialize(ns, name, node, encodingstyle) ⇒ ParseFrame
Returns a new instance of ParseFrame.
49 50 51 52 53 54 |
# File 'lib/soap/parser.rb', line 49 def initialize(ns, name, node, encodingstyle) @ns = ns @name = name self.node = node @encodingstyle = encodingstyle end |
Instance Attribute Details
#encodingstyle ⇒ Object (readonly)
Returns the value of attribute encodingstyle
31 32 33 |
# File 'lib/soap/parser.rb', line 31 def encodingstyle @encodingstyle end |
#name ⇒ Object (readonly)
Returns the value of attribute name
30 31 32 |
# File 'lib/soap/parser.rb', line 30 def name @name end |
#node ⇒ Object
Returns the value of attribute node
29 30 31 |
# File 'lib/soap/parser.rb', line 29 def node @node end |
#ns ⇒ Object (readonly)
Returns the value of attribute ns
31 32 33 |
# File 'lib/soap/parser.rb', line 31 def ns @ns end |