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

Methods

Public Instance methods

[Source]

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

[Source]

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

[Validate]