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

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

import net.sourceforge.pmd.annotation.InternalApi;
import net.sourceforge.pmd.lang.ast.xpath.internal.DeprecatedAttribute;

/**
 * Represents an addition operation on two or more values, or string concatenation.
 * This has a precedence greater than {@link ASTShiftExpression}, and lower
 * than {@link ASTMultiplicativeExpression}.
 *
 * 

Note that the children of this node are not necessarily {@link ASTMultiplicativeExpression}, * rather, they are expressions with an operator precedence greater or equal to MultiplicativeExpression. * *

 *
 * AdditiveExpression ::= {@linkplain ASTMultiplicativeExpression MultiplicativeExpression} ( ( "+" | "-" ) {@linkplain ASTMultiplicativeExpression MultiplicativeExpression} )+
 *
 * 
*/ public class ASTAdditiveExpression extends AbstractJavaTypeNode { @InternalApi @Deprecated public ASTAdditiveExpression(int id) { super(id); } @InternalApi @Deprecated public ASTAdditiveExpression(JavaParser p, int id) { super(p, id); } @Override public Object jjtAccept(JavaParserVisitor visitor, Object data) { return visitor.visit(this, data); } /** * @deprecated Use {@link #getOperator()} */ @Override @Deprecated @DeprecatedAttribute(replaceWith = "@Operator") public String getImage() { return getOperator(); } /** * Returns the image of the operator, i.e. "+" or "-". */ public String getOperator() { return super.getImage(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy