author | jjg |
Fri, 12 Aug 2016 17:45:31 -0700 | |
changeset 40316 | 20b50a99fe8d |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
3892 | 1 |
/* |
2 |
* Copyright 2009 Google, Inc. All Rights Reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
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 |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
3892 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 6709246 |
|
27 |
* @summary Class-cast exception when annotation type is missing. |
|
28 |
* @library ../../lib |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
5520
diff
changeset
|
29 |
* @modules jdk.javadoc |
3892 | 30 |
*/ |
31 |
||
32 |
import java.io.IOException; |
|
33 |
import com.sun.javadoc.RootDoc; |
|
34 |
import com.sun.javadoc.ClassDoc; |
|
35 |
import com.sun.javadoc.AnnotationDesc; |
|
36 |
||
40316 | 37 |
public class Main extends OldToolTester.Doclet { |
3892 | 38 |
|
40316 | 39 |
private static final OldToolTester tester = new OldToolTester("Main", "somepackage"); |
3892 | 40 |
|
41 |
public static void main(String... args) throws Exception { |
|
42 |
tester.run(); |
|
43 |
} |
|
44 |
||
45 |
public static boolean start(RootDoc root) { |
|
46 |
for (ClassDoc d : root.classes()) { |
|
47 |
for (AnnotationDesc a : d.annotations()) { |
|
48 |
System.out.println(a.annotationType()); |
|
49 |
} |
|
50 |
} |
|
51 |
return true; |
|
52 |
} |
|
53 |
} |