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

net.sourceforge.pmd.lang.java.symbols.BoundToNode 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 org.checkerframework.checker.nullness.qual.Nullable;

import net.sourceforge.pmd.lang.java.ast.JavaNode;


/**
 * Constrains the return type of getDeclaration. This is used to avoid having
 * a type parameter directly on {@link JElementSymbol}, which would get
 * in the way most of the time. Not visible outside this package, it's just
 * a code organisation device.
 *
 * @since 7.0.0
 */
interface BoundToNode extends JElementSymbol {


    @Override
    default @Nullable N tryGetNode() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy