= private = protected
full_name()
Return the fully qualified name of this class or module
# File lib/rdoc/code_objects.rb, line 565 def full_name if @parent && @parent.full_name @parent.full_name + "::" + @name else @name end end