langtools/test/tools/javac/processing/6512707/T6512707.java
author jjg
Wed, 07 Jan 2009 14:48:29 -0800
changeset 1786 88f03aba5cf9
child 5520 86e4b9a9da40
permissions -rw-r--r--
6512707: "incompatible types" after (unrelated) annotation processing Reviewed-by: darcy Contributed-by: prunge@velocitynet.com.au
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1786
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     1
/*
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     2
 * Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     4
 *
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     7
 * published by the Free Software Foundation.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     8
 *
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    13
 * accompanied this code).
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    14
 *
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    18
 *
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    21
 * have any questions.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    22
 */
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    23
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    24
/*
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    25
 * @test
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    26
 * @bug 6512707
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    27
 * @summary "incompatible types" after (unrelated) annotation processing
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    28
 * @author  Peter Runge
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    29
 * @compile T6512707.java
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    30
 *
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    31
 * @compile -processor T6512707 TestAnnotation.java
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    32
 */
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    33
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    34
import java.util.Set;
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    35
import javax.annotation.processing.*;
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    36
import javax.lang.model.SourceVersion;
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    37
import javax.lang.model.element.*;
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    38
import javax.lang.model.util.*;
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    39
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    40
/**
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    41
 * Dummy processor to force bug 6512707 to show - it does not matter what
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    42
 * the annotation processor does for this bug.
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    43
 */
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    44
@SupportedAnnotationTypes("*")
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    45
public class T6512707 extends AbstractProcessor {
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    46
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    47
    public boolean process(Set<? extends TypeElement> annotations,
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    48
                           RoundEnvironment roundEnv) {
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    49
        return(false);
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    50
    }
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    51
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    52
    @Override
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    53
    public SourceVersion getSupportedSourceVersion() {
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    54
        return SourceVersion.latest();
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    55
    }
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    56
}