langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/MethodDoc.java
author jjg
Fri, 27 May 2016 13:06:58 -0700
changeset 38617 d93a7f64e231
parent 25874 83c19f00452c
child 44878 9dd9cf7919ff
permissions -rw-r--r--
8157606: deprecate com.sun.javadoc API Reviewed-by: ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
     2
 * Copyright (c) 1998, 2014, 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: 10
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: 10
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: 10
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
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 com.sun.javadoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * Represents a method of a java class.
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * @since 1.2
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * @author Robert Field
38617
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    33
 *
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    34
 * @deprecated
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    35
 *   The declarations in this package have been superseded by those
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    36
 *   in the package {@code jdk.javadoc.doclet}.
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    37
 *   For more information, see the <i>Migration Guide</i> in the documentation for that package.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 */
38617
d93a7f64e231 8157606: deprecate com.sun.javadoc API
jjg
parents: 25874
diff changeset
    39
@Deprecated
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
public interface MethodDoc extends ExecutableMemberDoc {
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
     * Return true if this method is abstract
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    44
     *
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    45
     * @return true if this method is abstract
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
    boolean isAbstract();
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
    /**
14951
8d9ea42e4aba 8004814: javadoc should be able to detect default methods
vromero
parents: 5520
diff changeset
    50
     * Return true if this method is default
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    51
     *
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    52
     * @return true if this method is default
14951
8d9ea42e4aba 8004814: javadoc should be able to detect default methods
vromero
parents: 5520
diff changeset
    53
     */
8d9ea42e4aba 8004814: javadoc should be able to detect default methods
vromero
parents: 5520
diff changeset
    54
    boolean isDefault();
8d9ea42e4aba 8004814: javadoc should be able to detect default methods
vromero
parents: 5520
diff changeset
    55
8d9ea42e4aba 8004814: javadoc should be able to detect default methods
vromero
parents: 5520
diff changeset
    56
    /**
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     * Get return type.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     * @return the return type of this method, null if it
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * is a constructor.
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    Type returnType();
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     * Return the class containing the method that this method overrides.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     *
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    67
     * <p> <i>The {@code overriddenClass} method cannot
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     * accommodate certain generic type constructs.  The
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    69
     * {@code overriddenType} method should be used instead.</i>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     * @return a ClassDoc representing the superclass
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     *         defining a method that this method overrides, or null if
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     *         this method does not override.
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    ClassDoc overriddenClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
     * Return the type containing the method that this method overrides.
23136
aa8958a4c8f4 8035877: javadoc classes are missing @return and @param tags
jjg
parents: 14951
diff changeset
    79
     * It may be a {@code ClassDoc} or a {@code ParameterizedType}.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
     * @return the supertype whose method is overridden, or null if this
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
     *         method does not override another in a superclass
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
     * @since 1.5
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
    Type overriddenType();
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
     * Return the method that this method overrides.
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
     * @return a MethodDoc representing a method definition
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * in a superclass this method overrides, null if
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     * this method does not override.
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
    MethodDoc overriddenMethod();
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
     * Tests whether this method overrides another.
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
     * The overridden method may be one declared in a superclass or
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * a superinterface (unlike {@link #overriddenMethod()}).
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
     * <p> When a non-abstract method overrides an abstract one, it is
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     * also said to <i>implement</i> the other.
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * @param meth  the other method to examine
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * @return <tt>true</tt> if this method overrides the other
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * @since 1.5
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    boolean overrides(MethodDoc meth);
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
}