Class: OM::XML::DynamicNode::AddressedNode

Inherits:
Object
  • Object
show all
Defined in:
lib/om/xml/dynamic_node.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pointer, xpath, key) ⇒ AddressedNode

Returns a new instance of AddressedNode.



164
165
166
167
168
# File 'lib/om/xml/dynamic_node.rb', line 164

def initialize (pointer, xpath, key)
  self.xpath = xpath
  self.key = key
  self.pointer = pointer
end

Instance Attribute Details

#keyObject

Returns the value of attribute key.



163
164
165
# File 'lib/om/xml/dynamic_node.rb', line 163

def key
  @key
end

#pointerObject

Returns the value of attribute pointer.



163
164
165
# File 'lib/om/xml/dynamic_node.rb', line 163

def pointer
  @pointer
end

#xpathObject

Returns the value of attribute xpath.



163
164
165
# File 'lib/om/xml/dynamic_node.rb', line 163

def xpath
  @xpath
end