Class: SOAP::Parser::ParseFrame

Inherits:
Object
  • Object
show all
Defined in:
lib/soap/parser.rb

Defined Under Namespace

Classes: NodeContainer

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#encodingstyleObject (readonly)

Returns the value of attribute encodingstyle.



31
32
33
# File 'lib/soap/parser.rb', line 31

def encodingstyle
  @encodingstyle
end

#nameObject (readonly)

Returns the value of attribute name.



30
31
32
# File 'lib/soap/parser.rb', line 30

def name
  @name
end

#nodeObject

Returns the value of attribute node.



29
30
31
# File 'lib/soap/parser.rb', line 29

def node
  @node
end

#nsObject (readonly)

Returns the value of attribute ns.



31
32
33
# File 'lib/soap/parser.rb', line 31

def ns
  @ns
end