The java.lang.Package.getImplementationTitle() method returns the title of this package.
Following is the declaration for java.lang.Package.getImplementationTitle() method
public String getImplementationTitle()
NA
This method returns the title of the implementation, null is returned if it is not known.
NA
The following example shows the usage of lang.Object.getImplementationTitle() method.
package com.tutorialspoint; public class PackageDemo { public static void main(String[] args) { // create a package object for java.lang package Package pack = Package.getPackage("java.lang"); // get the annotation for lang package System.out.println(""+pack.getImplementationTitle()); } }
Let us compile and run the above program, this will produce the following result −
Java Runtime Environment