langtools/src/share/classes/javax/lang/model/element/ExecutableElement.java
author darcy
Tue, 18 Dec 2012 00:24:54 -0800
changeset 14956 185bd7c693d8
parent 14258 8d2148961366
child 16557 67a3ae363f03
permissions -rw-r--r--
8005046: Provide checking for a default method in javax.lang.model Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 8233
diff changeset
     2
 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2088
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2088
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2088
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2088
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2088
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package javax.lang.model.element;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import java.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
import javax.lang.model.type.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * Represents a method, constructor, or initializer (static or
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 * instance) of a class or interface, including annotation type
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * elements.
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
 * @author Joseph D. Darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * @author Scott Seligman
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * @author Peter von der Ahé
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * @see ExecutableType
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * @since 1.6
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 */
2088
6e2c8594b2e5 6460529: Provide mixin interfaces for getQualifiedName and getTypeParameters
darcy
parents: 10
diff changeset
    42
public interface ExecutableElement extends Element, Parameterizable {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
     * Returns the formal type parameters of this executable
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
     * in declaration order.
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
     * @return the formal type parameters, or an empty list
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
     * if there are none
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
    List<? extends TypeParameterElement> getTypeParameters();
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
     * Returns the return type of this executable.
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * Returns a {@link NoType} with kind {@link TypeKind#VOID VOID}
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     * if this executable is not a method, or is a method that does not
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * return a value.
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     * @return the return type of this executable
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
    TypeMirror getReturnType();
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
     * Returns the formal parameters of this executable.
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
     * They are returned in declaration order.
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * @return the formal parameters,
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     * or an empty list if there are none
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    List<? extends VariableElement> getParameters();
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     * Returns {@code true} if this method or constructor accepts a variable
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     * number of arguments and returns {@code false} otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     * @return {@code true} if this method or constructor accepts a variable
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     * number of arguments and {@code false} otherwise
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    boolean isVarArgs();
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
    /**
14956
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    81
     * Returns {@code true} if this method is a default method and
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    82
     * returns {@code false} otherwise.
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    83
     *
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    84
     * @return {@code true} if this method is a default method and
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    85
     * {@code false} otherwise
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    86
     * @since 1.8
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    87
     */
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    88
    boolean isDefault();
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    89
185bd7c693d8 8005046: Provide checking for a default method in javax.lang.model
darcy
parents: 14258
diff changeset
    90
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * Returns the exceptions and other throwables listed in this
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     * method or constructor's {@code throws} clause in declaration
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     * order.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
     * @return the exceptions and other throwables listed in the
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
     * {@code throws} clause, or an empty list if there are none
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    List<? extends TypeMirror> getThrownTypes();
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
     * Returns the default value if this executable is an annotation
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     * type element.  Returns {@code null} if this method is not an
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     * annotation type element, or if it is an annotation type element
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * with no default value.
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * @return the default value, or {@code null} if none
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    AnnotationValue getDefaultValue();
8233
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   109
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   110
    /**
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   111
     * Returns the simple name of a constructor, method, or
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   112
     * initializer.  For a constructor, the name {@code "<init>"} is
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   113
     * returned, for a static initializer, the name {@code "<clinit>"}
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   114
     * is returned, and for an anonymous class or instance
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   115
     * initializer, an empty name is returned.
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   116
     *
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   117
     * @return the simple name of a constructor, method, or
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   118
     * initializer
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   119
     */
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   120
    @Override
fda68eae1504 7015530: Reiterate API specializations in javax.lang.model.elment subinterfaces
darcy
parents: 5520
diff changeset
   121
    Name getSimpleName();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
}