Text icon to be displayed in front of the entity

Property definitions

nitc :: term_model $ MEntity :: cs_icon
	# Text icon to be displayed in front of the entity
	fun cs_icon(no_color: nullable Bool): String do
		return public_visibility.cs_icon(no_color)
	end
src/doc/templates/term_model.nit:49,2--52,4

nitc :: term_model $ MClass :: cs_icon
	redef fun cs_icon(no_color) do return intro.cs_icon(no_color)
src/doc/templates/term_model.nit:149,2--62

nitc :: term_model $ MClassDef :: cs_icon
	redef fun cs_icon(no_color) do
		if is_intro then return visibility.cs_icon(no_color)
		return visibility.cs_visibility_color("*")
	end
src/doc/templates/term_model.nit:154,2--157,4

nitc :: term_model $ MProperty :: cs_icon
	redef fun cs_icon(no_color) do return intro.cs_icon(no_color)
src/doc/templates/term_model.nit:177,2--62

nitc :: term_model $ MPropDef :: cs_icon
	redef fun cs_icon(no_color) do
		if is_intro then return visibility.cs_icon(no_color)
		return visibility.cs_visibility_color("*", no_color)
	end
src/doc/templates/term_model.nit:182,2--185,4