net.sourceforge.pmd.lang.java.ast.ASTClassLiteral Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.java.ast;
import org.checkerframework.checker.nullness.qual.NonNull;
/**
* A class literal. Class literals are {@linkplain ASTPrimaryExpression primary expressions},
* but not proper {@linkplain ASTLiteral literals}, since they are represented by several tokens.
*
*
*
* ClassLiteral ::= {@link ASTType Type} "." "class"
*
*
*/
public final class ASTClassLiteral extends AbstractJavaExpr implements ASTPrimaryExpression {
ASTClassLiteral(int id) {
super(id);
}
@Override
protected R acceptVisitor(JavaVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
/**
* Returns the type node (this may be a {@link ASTVoidType}).
*/
public @NonNull ASTType getTypeNode() {
return (ASTType) getChild(0);
}
}