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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 391
391:     def collect_methods
392:       list = @context.method_list
393:       unless @options.show_all
394:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
395:       end
396:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
397:     end

[Source]

     # File generators/xhtml_generator.rb, line 385
385:     def value_hash
386:       super
387:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
388:       @values
389:     end

[Validate]