build_attribute_list(section)public
No documentation available.
# File lib/rdoc/generator.rb, line 592
def build_attribute_list(section)
@context.attributes.sort.map do |att|
next unless att.section == section
if att.visibility == :public or att.visibility == :protected or
@options.show_all then
entry = {
"name" => CGI.escapeHTML(att.name),
"rw" => att.rw,
"a_desc" => markup(att.comment, true)
}
unless att.visibility == :public or att.visibility == :protected then
entry["rw"] << "-"
end
entry
end
end.compact
end