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

net.sourceforge.pmd.lang.modelica.resolver.AbstractModelicaDeclaration Maven / Gradle / Ivy

The newest version!
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.modelica.resolver;

import net.sourceforge.pmd.lang.modelica.resolver.internal.ResolutionContext;
import net.sourceforge.pmd.lang.modelica.resolver.internal.Watchdog;

/**
 * Internal base class for Modelica declarations, see ${@link ModelicaDeclaration} for public API.
 */
abstract class AbstractModelicaDeclaration implements ModelicaDeclaration {
    /**
     * Resolves further name components, supposing previous ones resolved to this declaration.
     *
     * @param result Where to place resolution results
     * @param name   Further name parts to resolve
     * @throws Watchdog.CountdownException if too many resolution steps were performed
     */
    abstract void resolveFurtherNameComponents(ResolutionContext result, CompositeName name) throws Watchdog.CountdownException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy