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

net.sourceforge.pmd.lang.apex.ast.ApexNode Maven / Gradle / Ivy

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

package net.sourceforge.pmd.lang.apex.ast;

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

import net.sourceforge.pmd.lang.ast.impl.GenericNode;

/**
 * Root interface implemented by all Apex nodes. Apex nodes wrap a tree
 * obtained from an external parser.
 *
 * @param  Type of the underlying Summit AST node (or Void)
 */
public interface ApexNode extends GenericNode> {

    boolean hasRealLoc();


    String getDefiningType();


    @Override
    @NonNull ASTApexFile getRoot();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy