An icon representative of the mentity

Property definitions

nitc :: html_model $ MEntity :: html_icon
	# An icon representative of the mentity
	fun html_icon: BSIcon do return new BSIcon("tag", ["text-muted"])
src/doc/templates/html_model.nit:89,2--90,66

nitc :: html_model $ MClass :: html_icon
	redef fun html_icon do return new BSIcon("stop", css_classes)
src/doc/templates/html_model.nit:135,2--62

nitc :: html_model $ MClassDef :: html_icon
	redef fun html_icon do
		if is_intro then
			return new BSIcon("plus", css_classes)
		end
		return new BSIcon("asterisk", css_classes)
	end
src/doc/templates/html_model.nit:180,2--185,4

nitc :: html_model $ MPackage :: html_icon
	redef fun html_icon do return new BSIcon("book", ["text-muted"])
src/doc/templates/html_model.nit:100,2--65

nitc :: html_model $ MGroup :: html_icon
	redef fun html_icon do return new BSIcon("folder-close", ["text-muted"])
src/doc/templates/html_model.nit:105,2--73

nitc :: html_model $ MProperty :: html_icon
	redef fun html_icon do return new BSIcon("tag", css_classes)
src/doc/templates/html_model.nit:209,2--61

nitc :: html_model $ MPropDef :: html_icon
	redef fun html_icon do
		if is_intro then
			return new BSIcon("plus", css_classes)
		end
		return new BSIcon("asterisk", css_classes)
	end
src/doc/templates/html_model.nit:232,2--237,4

nitc :: html_model $ MModule :: html_icon
	redef fun html_icon do return new BSIcon("file", ["text-muted"])
src/doc/templates/html_model.nit:120,2--65