| Home > Java SE 6 > com.sun.javadoc > AnnotationTypeElementDoc.java [ javadoc ] | In other release: | |
/* * %W% %E% * * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.javadoc; /** * Represents an element of an annotation type. * * @author Scott Seligman * @version %I% %E% * @since 1.5 */ public interface AnnotationTypeElementDoc extends MethodDoc { /** * Returns the default value of this element. * Returns null if this element has no default. * * @return the default value of this element. */ AnnotationValue defaultValue(); }