Method: RDoc::ClassModule#full_name

Defined in:
lib/rdoc/code_objects.rb

#full_nameObject

Return the fully qualified name of this class or module



573
574
575
576
577
578
579
# File 'lib/rdoc/code_objects.rb', line 573

def full_name
  if @parent && @parent.full_name
    @parent.full_name + "::" + @name
  else
    @name
  end
end