net.sourceforge.pmd.lang.apex.ast.ASTInvalidDependentCompilation Maven / Gradle / Ivy
/*
* 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.declaration.TypeDeclaration;
public final class ASTInvalidDependentCompilation extends AbstractApexNode.Single {
ASTInvalidDependentCompilation(TypeDeclaration userClass) {
super(userClass);
}
@Override
protected R acceptApexVisitor(ApexVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
@Override
public String getImage() {
String apexName = getDefiningType();
return apexName.substring(apexName.lastIndexOf('.') + 1);
}
}