test/tools/javac/processing/6430209/b6341534.java

Mon, 15 Feb 2010 20:06:11 -0800

author
darcy
date
Mon, 15 Feb 2010 20:06:11 -0800
changeset 495
fe17a9dbef03
parent 287
44eaac2b4501
child 554
9d9f26857129
permissions
-rw-r--r--

6926699: Annotation processing regression tests should typically return SourceVersion.latest
Reviewed-by: jjg

     1 /*
     2  * Copyright 2006 Sun Microsystems, 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  *
    19  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  */
    24 import javax.annotation.processing.*;
    25 import javax.lang.model.SourceVersion;
    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;
    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());
    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     }
    66     @Override
    67     public SourceVersion getSupportedSourceVersion() {
    68         return SourceVersion.latest();
    69     }
    70 }

mercurial