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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 420
420:     def collect_methods
421:       list = @context.method_list
422:       unless @options.show_all
423:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
424:       end
425:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
426:     end

[Source]

     # File generators/xhtml_generator.rb, line 414
414:     def value_hash
415:       super
416:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
417:       @values
418:     end

[Validate]