author | ohair |
Tue, 25 May 2010 15:54:51 -0700 | |
changeset 5520 | 86e4b9a9da40 |
parent 4935 | ff8adaa7bb8e |
child 6582 | c7a4fb5a2f86 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
5520 | 2 |
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. |
10 | 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. |
|
10 | 22 |
*/ |
23 |
||
24 |
import javax.annotation.processing.*; |
|
4935
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
25 |
import javax.lang.model.SourceVersion; |
10 | 26 |
import javax.lang.model.element.*; |
27 |
import javax.lang.model.util.*; |
|
28 |
import static javax.lang.model.util.ElementFilter.*; |
|
29 |
import static javax.tools.Diagnostic.Kind.*; |
|
30 |
import java.util.*; |
|
31 |
import java.util.Set; |
|
32 |
||
33 |
@SupportedAnnotationTypes({"*"}) |
|
34 |
public class b6341534 extends AbstractProcessor { |
|
35 |
static int r = 0; |
|
36 |
static Elements E = null; |
|
37 |
static Messager msgr = null; |
|
38 |
public void init(ProcessingEnvironment penv) { |
|
39 |
processingEnv = penv; |
|
40 |
msgr = penv.getMessager(); |
|
41 |
E = penv.getElementUtils(); |
|
42 |
} |
|
43 |
//Create directory 'dir1' and a test class in dir1 |
|
44 |
public boolean process(Set<? extends TypeElement> tes, RoundEnvironment renv) |
|
45 |
{ |
|
46 |
if(!renv.errorRaised() && !renv.processingOver()){ |
|
47 |
r++; |
|
48 |
for( TypeElement t : typesIn(renv.getRootElements()) ) |
|
49 |
System.out.println("Round"+r+ ": " + t.toString()); |
|
50 |
||
51 |
try { |
|
52 |
PackageElement PE = E.getPackageElement("dir1"); |
|
53 |
List<? extends Element> LEE = PE.getEnclosedElements(); /* <=This line elicits the error message. */ |
|
54 |
for(Element e : LEE) System.out.println("found " + e.toString() + " in dir1."); |
|
55 |
} |
|
56 |
catch(NullPointerException npe) { |
|
57 |
msgr.printMessage(ERROR,npe.toString()); |
|
58 |
//npe.printStackTrace(); |
|
59 |
return false; |
|
60 |
} |
|
61 |
} |
|
62 |
if( renv.errorRaised() ) { msgr.printMessage(ERROR, "FAILED");} |
|
63 |
return true; |
|
64 |
} |
|
4935
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
65 |
|
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
66 |
@Override |
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
67 |
public SourceVersion getSupportedSourceVersion() { |
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
68 |
return SourceVersion.latest(); |
ff8adaa7bb8e
6926699: Annotation processing regression tests should typically return SourceVersion.latest
darcy
parents:
2983
diff
changeset
|
69 |
} |
10 | 70 |
} |