Return self as a DotNode

Property definitions

nitc :: commands_graph $ MEntity :: to_dot_node
	# Return `self` as a DotNode
	fun to_dot_node: DotNode do
		var node = new DotNode(full_name)
		node["label"] = name
		return node
	end
src/doc/commands/commands_graph.nit:361,2--366,4

nitc :: static_html $ MEntity :: to_dot_node
	redef fun to_dot_node do
		var node = super
		node["URL"] = html_url
		return node
	end
src/doc/static/static_html.nit:367,2--371,4

nitc :: commands_graph $ MClass :: to_dot_node
	redef fun to_dot_node do
		var node = super
		node["shape"] = "box"
		return node
	end
src/doc/commands/commands_graph.nit:394,2--398,4

nitc :: commands_graph $ MPackage :: to_dot_node
	redef fun to_dot_node do
		var node = super
		node["shape"] = "tab"
		return node
	end
src/doc/commands/commands_graph.nit:370,2--374,4

nitc :: commands_graph $ MGroup :: to_dot_node
	redef fun to_dot_node do
		var node = super
		node["shape"] = "folder"
		return node
	end
src/doc/commands/commands_graph.nit:378,2--382,4

nitc :: commands_graph $ MModule :: to_dot_node
	redef fun to_dot_node do
		var node = super
		node["shape"] = "note"
		return node
	end
src/doc/commands/commands_graph.nit:386,2--390,4