test/tools/javac/processing/werror/WError1.java

Wed, 29 Sep 2010 23:27:57 -0700

author
darcy
date
Wed, 29 Sep 2010 23:27:57 -0700
changeset 699
d2aaaec153e8
parent 614
ed354a00f76b
child 1466
b52a38d4536c
permissions
-rw-r--r--

6983738: Use a JavacTestingAbstractProcessor
Reviewed-by: jjg

jjg@614 1 /*
jjg@614 2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
jjg@614 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@614 4 *
jjg@614 5 * This code is free software; you can redistribute it and/or modify it
jjg@614 6 * under the terms of the GNU General Public License version 2 only, as
jjg@614 7 * published by the Free Software Foundation.
jjg@614 8 *
jjg@614 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@614 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@614 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@614 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@614 13 * accompanied this code).
jjg@614 14 *
jjg@614 15 * You should have received a copy of the GNU General Public License version
jjg@614 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@614 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@614 18 *
jjg@614 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@614 20 * or visit www.oracle.com if you need additional information or have any
jjg@614 21 * questions.
jjg@614 22 */
jjg@614 23
jjg@614 24 /*
jjg@614 25 * @test 6403456
jjg@614 26 * @summary -Werror should work with annotation processing
darcy@699 27 * @library ../../lib
darcy@699 28 * @build JavacTestingAbstractProcessor
jjg@614 29 * @compile WError1.java
jjg@614 30 * @compile -proc:only -processor WError1 WError1.java
jjg@614 31 * @compile/fail/ref=WError1.out -XDrawDiagnostics -Werror -proc:only -processor WError1 WError1.java
jjg@614 32 */
jjg@614 33
jjg@614 34 import java.io.*;
jjg@614 35 import java.util.*;
jjg@614 36 import javax.annotation.processing.*;
jjg@614 37 import javax.lang.model.*;
jjg@614 38 import javax.lang.model.element.*;
jjg@614 39 import javax.tools.*;
jjg@614 40
darcy@699 41 public class WError1 extends JavacTestingAbstractProcessor {
jjg@614 42 @Override
jjg@614 43 public boolean process(Set<? extends TypeElement> annotations,
jjg@614 44 RoundEnvironment roundEnv) {
jjg@614 45 if (++round == 1) {
jjg@614 46 messager.printMessage(Diagnostic.Kind.WARNING, "round 1");
jjg@614 47 }
jjg@614 48 return true;
jjg@614 49 }
jjg@614 50
jjg@614 51 int round = 0;
jjg@614 52 }

mercurial