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 8 package com.sun.javadoc; 9 10 11 /** 12 * Represents an annotation type. 13 * 14 * @author Scott Seligman 15 * @version 1.3 04/04/08 16 * @since 1.5 17 */ 18 public interface AnnotationTypeDoc extends ClassDoc { 19 20 /** 21 * Returns the elements of this annotation type. 22 * Returns an empty array if there are none. 23 * 24 * @return the elements of this annotation type. 25 */ 26 AnnotationTypeElementDoc[] elements(); 27 } 28