Class | Generators::XHtmlClass |
In: |
generators/xhtml_generator.rb
|
Parent: | HtmlClass |
# File generators/xhtml_generator.rb, line 378 378: def collect_methods 379: list = @context.method_list 380: unless @options.show_all 381: list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation } 382: end 383: @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) } 384: end