All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.java.symbols.JExecutableSymbol Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/*
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.java.symbols;

import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.List;

import org.checkerframework.checker.nullness.qual.NonNull;
import org.checkerframework.checker.nullness.qual.Nullable;

import net.sourceforge.pmd.lang.java.types.JTypeMirror;
import net.sourceforge.pmd.lang.java.types.Substitution;

/**
 * Common supertype for {@linkplain JMethodSymbol method}
 * and {@linkplain JConstructorSymbol constructor symbols}.
 */
public interface JExecutableSymbol extends JTypeParameterOwnerSymbol {


    /**
     * Returns the formal parameters this executable declares. These are
     * only non-synthetic parameters. For example, a constructor for an
     * inner non-static class will not reflect a parameter for the enclosing
     * instance.
     */
    List getFormalParameters();


    default boolean isDefaultMethod() {
        // Default methods are public non-abstract instance methods
        // declared in an interface.
        return this instanceof JMethodSymbol
            && (getModifiers() & (Modifier.ABSTRACT | Modifier.PUBLIC | Modifier.STATIC)) == Modifier.PUBLIC
            && getEnclosingClass().isInterface();
    }


    /** Returns true if the last formal parameter is a varargs parameter. */
    boolean isVarargs();


    /**
     * Returns the number of formal parameters expected. This must be the
     * length of {@link #getFormalParameters()} but if it can be implemented
     * without creating the formal parameters, it should.
     *
     * 

A varargs parameter counts as a single parameter. */ int getArity(); /** * Return the receiver type with all type annotations, when viewed * under the given substitution. Return null if this method * {@linkplain #hasReceiver() has no receiver}. * * @throws IllegalArgumentException If the argument is not the receiver type of this type. */ @Nullable JTypeMirror getAnnotatedReceiverType(Substitution subst); /** * Return true if this method needs to be called on a receiver instance. * This is not the case if the method is static, or a constructor of an * outer or static class. */ default boolean hasReceiver() { if (isStatic()) { return false; } if (this instanceof JConstructorSymbol) { return !getEnclosingClass().isStatic() && getEnclosingClass().getEnclosingClass() != null; } return true; } /** * Returns the class symbol declaring this method or constructor. * This is similar to {@link Constructor#getDeclaringClass()}, resp. * {@link Method#getDeclaringClass()}. Never null. */ @Override @NonNull JClassSymbol getEnclosingClass(); @Override default @NonNull String getPackageName() { return getEnclosingClass().getPackageName(); } /** * Returns the types of the formal parameters, when viewed under the * given substitution. The returned list has one item for each formal. * * @see #getFormalParameters() */ List getFormalParameterTypes(Substitution subst); /** * Returns the types of the thrown exceptions, when viewed under the * given substitution. */ List getThrownExceptionTypes(Substitution subst); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy