Class: JSON::LD::API::REXML::NodeSetProxy
- Inherits:
-
Object
- Object
- JSON::LD::API::REXML::NodeSetProxy
- Defined in:
- lib/json/ld/html/rexml.rb
Overview
NodeSet proxy
Instance Attribute Summary collapse
-
#node_set ⇒ Object
readonly
Returns the value of attribute node_set.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
Instance Method Summary collapse
-
#each {|| ... } ⇒ Object
Return a proxy for each child.
-
#initialize(node_set, parent) ⇒ NodeSetProxy
constructor
A new instance of NodeSetProxy.
-
#method_missing(method, *args) ⇒ Object
Proxy for everything else to @node_set.
- #to_html ⇒ Object
Constructor Details
#initialize(node_set, parent) ⇒ NodeSetProxy
Returns a new instance of NodeSetProxy.
139 140 141 142 |
# File 'lib/json/ld/html/rexml.rb', line 139 def initialize(node_set, parent) @node_set = node_set @parent = parent end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args) ⇒ Object
Proxy for everything else to @node_set
162 163 164 |
# File 'lib/json/ld/html/rexml.rb', line 162 def method_missing(method, *args) @node_set.send(method, *args) end |
Instance Attribute Details
#node_set ⇒ Object (readonly)
Returns the value of attribute node_set.
136 137 138 |
# File 'lib/json/ld/html/rexml.rb', line 136 def node_set @node_set end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
137 138 139 |
# File 'lib/json/ld/html/rexml.rb', line 137 def parent @parent end |
Instance Method Details
#each {|| ... } ⇒ Object
Return a proxy for each child
149 150 151 152 153 |
# File 'lib/json/ld/html/rexml.rb', line 149 def each @node_set.each do |c| yield NodeProxy.new(c, parent) end end |
#to_html ⇒ Object
156 157 158 |
# File 'lib/json/ld/html/rexml.rb', line 156 def to_html node_set.map(&:to_s).join("") end |