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

Methods

Public Instance methods

[Source]

     # File generators/xhtml_generator.rb, line 355
355:     def collect_methods
356:       list = @context.method_list
357:       unless @options.show_all
358:         list = list.find_all {|m| m.visibility == :public || m.visibility == :protected || m.force_documentation }
359:       end
360:       @methods = list.collect {|m| XHtmlMethod.new(m, self, @options) }
361:     end

[Source]

     # File generators/xhtml_generator.rb, line 349
349:     def value_hash
350:       super
351:       @values["mathml_xsl_url"] = style_url(path, "mathml.xsl")
352:       @values
353:     end

[Validate]