Class Generators::XHtmlClass
In: generators/xhtml_generator.rb
Parent: HtmlClass

Methods

Public Instance methods

[Source]

     # 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

[Source]

     # File generators/xhtml_generator.rb, line 372
372:     def value_hash
373:       super
374:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
375:       @values
376:     end

[Validate]