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

Methods

Public Instance methods

[Source]

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

[Source]

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

[Validate]