1. /*
  2. * @(#)AnnotationTypeDoc.java 1.3 04/04/08
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.javadoc;
  8. /**
  9. * Represents an annotation type.
  10. *
  11. * @author Scott Seligman
  12. * @version 1.3 04/04/08
  13. * @since 1.5
  14. */
  15. public interface AnnotationTypeDoc extends ClassDoc {
  16. /**
  17. * Returns the elements of this annotation type.
  18. * Returns an empty array if there are none.
  19. *
  20. * @return the elements of this annotation type.
  21. */
  22. AnnotationTypeElementDoc[] elements();
  23. }