Method: JavaHead::Class#fullname

Defined in:
lib/java_head/class.rb

#fullnameString Also known as: to_s

Get the fully qualified name of the class

Returns:

  • (String)

    the full name of the class, e.g. com.example.projects.Circle



23
24
25
# File 'lib/java_head/class.rb', line 23

def fullname
  "#{@package.fullname}.#{@name}"
end