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

net.sourceforge.pmd.lang.java.ast.ASTPatternExpression 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.java.ast;

import net.sourceforge.pmd.lang.java.ast.InternalInterfaces.AtLeastOneChild;

/**
 * Wraps a {@link ASTPattern} node but presents the interface of {@link ASTExpression}.
 * This is only used in the following contexts:
 * 
    *
  • As the right-hand side of {@link BinaryOp#INSTANCEOF instanceof expressions}. *
* *
 *
 * PatternExpression ::= {@link ASTPattern Pattern}
 *
 * 
*/ public final class ASTPatternExpression extends AbstractJavaTypeNode implements ASTPrimaryExpression, AtLeastOneChild, LeftRecursiveNode { ASTPatternExpression(int id) { super(id); } ASTPatternExpression(ASTPattern wrapped) { this(JavaParserImplTreeConstants.JJTPATTERNEXPRESSION); this.addChild((AbstractJavaNode) wrapped, 0); copyTextCoordinates((AbstractJavaNode) wrapped); } @Override protected R acceptVisitor(JavaVisitor visitor, P data) { return visitor.visit(this, data); } /** Gets the wrapped pattern. */ public ASTPattern getPattern() { return (ASTPattern) getChild(0); } /** Returns 0, patterns can never be parenthesized. */ @Override public int getParenthesisDepth() { return 0; } /** Returns false, patterns can never be parenthesized. */ @Override public boolean isParenthesized() { return false; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy