Class: OrgParse::TableRowNode
Overview
table row
Instance Attribute Summary
Attributes inherited from Node
#children, #kind, #parent, #value
Instance Method Summary collapse
-
#initialize(cols, head = false) ⇒ TableRowNode
constructor
A new instance of TableRowNode.
- #is_head=(val) ⇒ Object
- #is_head? ⇒ Boolean
Methods inherited from Node
#done, #done?, #example?, #html?, #inspect, #is_leaf?, #section_no_array, #set_example, #set_html, #set_src, #set_to_descendant, #set_verse, #src?, #verse?
Constructor Details
#initialize(cols, head = false) ⇒ TableRowNode
Returns a new instance of TableRowNode.
289 290 291 |
# File 'lib/org-parse/node.rb', line 289 def initialize(cols, head = false) super(:TABLE_ROW, cols, head) end |
Instance Method Details
#is_head=(val) ⇒ Object
297 298 299 |
# File 'lib/org-parse/node.rb', line 297 def is_head=(val) @value = val end |
#is_head? ⇒ Boolean
293 294 295 |
# File 'lib/org-parse/node.rb', line 293 def is_head? @value end |