Package.getAnnotations() has the following syntax.
public Annotation [] getAnnotations()
In the following code shows how to use Package.getAnnotations() method.
import java.lang.annotation.Annotation; //from w ww. j av a 2 s. com public class Main { public static void main(String args[]) { // create a package object for java.lang package Package pack = Package.getPackage("java.io"); for(Annotation at:pack.getAnnotations()){ System.out.println(at); } } }