Uses of Interface
org.sonar.plugins.java.api.tree.AssignmentExpressionTree
-
Packages that use AssignmentExpressionTree Package Description org.sonar.java.cfg org.sonar.java.model org.sonar.java.model.expression org.sonar.plugins.java.api.tree Provides interfaces to represent Java source code as syntax tree. -
-
Uses of AssignmentExpressionTree in org.sonar.java.cfg
Methods in org.sonar.java.cfg with parameters of type AssignmentExpressionTree Modifier and Type Method Description void
VariableReadExtractor. visitAssignmentExpression(AssignmentExpressionTree tree)
-
Uses of AssignmentExpressionTree in org.sonar.java.model
Methods in org.sonar.java.model with parameters of type AssignmentExpressionTree Modifier and Type Method Description static IdentifierTree
ExpressionUtils. extractIdentifier(AssignmentExpressionTree tree)
static boolean
ExpressionUtils. isSelectOnThisOrSuper(AssignmentExpressionTree tree)
static boolean
ExpressionUtils. isSimpleAssignment(AssignmentExpressionTree tree)
In case of simple assignments, only the expression is evaluated, as we only use the reference to the variable to store the result. -
Uses of AssignmentExpressionTree in org.sonar.java.model.expression
Classes in org.sonar.java.model.expression that implement AssignmentExpressionTree Modifier and Type Class Description class
AssignmentExpressionTreeImpl
-
Uses of AssignmentExpressionTree in org.sonar.plugins.java.api.tree
Methods in org.sonar.plugins.java.api.tree with parameters of type AssignmentExpressionTree Modifier and Type Method Description void
BaseTreeVisitor. visitAssignmentExpression(AssignmentExpressionTree tree)
void
TreeVisitor. visitAssignmentExpression(AssignmentExpressionTree tree)
-