Class/Module Index [+]

Quicksearch

HTML5::TreeBuilders::SimpleTree::Document

Public Class Methods

new() click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/treebuilders/simpletree.rb, line 101
def initialize
  super nil
end

Public Instance Methods

printTree(indent=0) click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/treebuilders/simpletree.rb, line 105
def printTree indent=0
  tree = to_s
  for child in childNodes
    tree += child.printTree(indent + 2)
  end
  tree
end
to_s() click to toggle source
# File lib/feed_tools/vendor/html5/lib/html5/treebuilders/simpletree.rb, line 97
def to_s
   "#document"
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.