src/share/classes/com/sun/javadoc/ExecutableMemberDoc.java

changeset 1521
71f35e4b93a5
parent 1326
30c36e23f154
child 1686
eb134c8e931d
equal deleted inserted replaced
1520:5c956be64b9e 1521:71f35e4b93a5
1 /* 1 /*
2 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
86 * in the order the arguments are present. 86 * in the order the arguments are present.
87 */ 87 */
88 Parameter[] parameters(); 88 Parameter[] parameters();
89 89
90 /** 90 /**
91 * Get the receiver annotations of this executable element.
92 * Return an empty array if there are none.
93 *
94 * @return the receiver annotations of this executable element.
95 * @since 1.8
96 */
97 AnnotationDesc[] receiverAnnotations();
98
99 /**
91 * Return the throws tags in this method. 100 * Return the throws tags in this method.
92 * 101 *
93 * @return an array of ThrowTag containing all <code>&#64;exception</code> 102 * @return an array of ThrowTag containing all <code>&#64;exception</code>
94 * and <code>&#64;throws</code> tags. 103 * and <code>&#64;throws</code> tags.
95 */ 104 */

mercurial