test/tools/javac/api/6412656/T6412656.java

Thu, 26 Aug 2010 15:17:17 -0700

author
jjg
date
Thu, 26 Aug 2010 15:17:17 -0700
changeset 659
cfd047f3cf60
parent 554
9d9f26857129
child 1733
e39669aea0bd
permissions
-rw-r--r--

6604599: ToolProvider should be less compiler-specific
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2006, Oracle and/or its affiliates. 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 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.
    22  */
    24 /*
    25  * @test
    26  * @bug     6412656 6443062
    27  * @summary JSR 199: pass annotation processor instances to compiler
    28  * @author  Peter von der Ah\u00e9
    29  * @library ../lib
    30  */
    32 import java.util.Set;
    33 import java.util.Collections;
    34 import javax.lang.model.element.TypeElement;
    35 import javax.annotation.processing.*;
    36 import com.sun.tools.javac.processing.AnnotationProcessingError;
    39 public class T6412656 extends ToolTester {
    41     int count = 0;
    43     void test(String... args) {
    44         task = tool.getTask(null, fm, null, null,
    45                             Collections.singleton(T6412656.class.getName()), null);
    46         task.setProcessors(Collections.singleton(new MyProc(this)));
    47         task.call();
    48         if (count == 0)
    49             throw new AssertionError("Annotation processor not run");
    50         System.out.println("OK");
    51     }
    53     public static void main(String... args) {
    54         new T6412656().test(args);
    55     }
    57     @SupportedAnnotationTypes("*")
    58     static class MyProc extends AbstractProcessor {
    59         T6412656 test;
    60         MyProc(T6412656 test) {
    61             this.test = test;
    62         }
    63         public boolean process(Set<? extends TypeElement> annotations,
    64                                RoundEnvironment roundEnv) {
    65             test.count++;
    66             return false;
    67         }
    68     }
    69 }

mercurial