langtools/test/tools/javac/processing/6512707/TestEnum.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
public enum TestEnum
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    25
{
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    26
    ONE,
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    27
    TWO
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    28
}
88f03aba5cf9 6512707: "incompatible types" after (unrelated) annotation processing
jjg
parents:
diff changeset
    29