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

net.sourceforge.pmd.lang.apex.ast.ASTUserInterface 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.apex.ast;

import com.google.summit.ast.TypeRef;
import com.google.summit.ast.declaration.InterfaceDeclaration;

public final class ASTUserInterface extends BaseApexClass implements ASTUserClassOrInterface {

    ASTUserInterface(InterfaceDeclaration userInterface) {
        super(userInterface);
    }

    @Override
    protected  R acceptApexVisitor(ApexVisitor visitor, P data) {
        return visitor.visit(this, data);
    }


    /**
     * Returns the name of the superclass of this class, or an empty string if there is none.
     *
     * The type name does NOT include type arguments.
     */
    public String getSuperInterfaceName() {
        return node.getExtendsTypes().stream().map(TypeRef::asTypeErasedString).findFirst().orElse("");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy