rt/emul/mini/src/main/java/java/lang/annotation/ElementType.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 554 emul/mini/src/main/java/java/lang/annotation/ElementType.java@05224402145d
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
jaroslav@68
     1
/*
jaroslav@68
     2
 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
jaroslav@68
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@68
     4
 *
jaroslav@68
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@68
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@68
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@68
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@68
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@68
    10
 *
jaroslav@68
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@68
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@68
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@68
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@68
    15
 * accompanied this code).
jaroslav@68
    16
 *
jaroslav@68
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@68
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@68
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@68
    20
 *
jaroslav@68
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@68
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@68
    23
 * questions.
jaroslav@68
    24
 */
jaroslav@68
    25
jaroslav@68
    26
package java.lang.annotation;
jaroslav@68
    27
jaroslav@68
    28
/**
jaroslav@68
    29
 * A program element type.  The constants of this enumerated type
jaroslav@68
    30
 * provide a simple classification of the declared elements in a
jaroslav@68
    31
 * Java program.
jaroslav@68
    32
 *
jaroslav@68
    33
 * <p>These constants are used with the {@link Target} meta-annotation type
jaroslav@68
    34
 * to specify where it is legal to use an annotation type.
jaroslav@68
    35
 *
jaroslav@68
    36
 * @author  Joshua Bloch
jaroslav@68
    37
 * @since 1.5
jaroslav@68
    38
 */
jaroslav@68
    39
public enum ElementType {
jaroslav@68
    40
    /** Class, interface (including annotation type), or enum declaration */
jaroslav@68
    41
    TYPE,
jaroslav@68
    42
jaroslav@68
    43
    /** Field declaration (includes enum constants) */
jaroslav@68
    44
    FIELD,
jaroslav@68
    45
jaroslav@68
    46
    /** Method declaration */
jaroslav@68
    47
    METHOD,
jaroslav@68
    48
jaroslav@68
    49
    /** Parameter declaration */
jaroslav@68
    50
    PARAMETER,
jaroslav@68
    51
jaroslav@68
    52
    /** Constructor declaration */
jaroslav@68
    53
    CONSTRUCTOR,
jaroslav@68
    54
jaroslav@68
    55
    /** Local variable declaration */
jaroslav@68
    56
    LOCAL_VARIABLE,
jaroslav@68
    57
jaroslav@68
    58
    /** Annotation type declaration */
jaroslav@68
    59
    ANNOTATION_TYPE,
jaroslav@68
    60
jaroslav@68
    61
    /** Package declaration */
jaroslav@68
    62
    PACKAGE
jaroslav@68
    63
}